-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
92 lines (79 loc) · 1.27 KB
/
styles.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
:global {
body {
margin: 0;
height: 100%;
width: 100%;
}
* {
box-sizing: border-box;
}
a {
text-decoration: underline;
color: white;
background-color: rgba(255,255,255,0);
transition: background-color 0.1s ease-in;
}
a:hover {
background-color: rgba(255,255,255,1);
color: black;
}
}
.root {
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
}
.left, .right {
width: 50%;
height: 100%;
}
.left {
position: fixed;
left: 0;
h1 {
position: relative;
top: 50%;
text-align: center;
transform: translateY(-50%);
font-size: 144pt;
margin: 0;
color: black;
transition: color 0.1s ease-in;
}
}
.right {
position: absolute;
right: 0;
top: 0;
background-color: black;
transition: background-color 0.1s ease-in;
}
.section {
height: 100vh;
width: 100%;
background-color: black;
padding: 0 72pt;
margin: 0;
display: inline-block;
transition: background-color 0.1s ease-in;
& > * {
position: relative;
top: 50%;
transform: translateY(-50%);
color: white;
h2 {
margin: 0;
font-size: 72pt;
}
h3 {
margin: 0;
font-size: 48pt;
}
p {
margin: 24pt 0 0 0;
font-size: 24pt;
}
}
}