-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
131 lines (120 loc) · 1.85 KB
/
app.css
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
:root {
font-family: "Helvetica", "Roboto", "Arial", "Ubuntu", "Open Sans", sans-serif;
font-size: 14pt;
--dark: #011b2d;
--gray: #61717c;
--blue: #51bcd5;
--th-red: #C60C0F;
--th-orange: #EA5B0C;
--th-purple: #B62584;
color: var(--dark);
}
* {
box-sizing: border-box;
}
a {
color: var(--blue);
text-decoration: none;
}
a:hover {
text-decoration: underline;
transition: 250ms ease-out;
}
html, body {
margin: 0;
padding: 0;
}
html {
padding: 2rem;
}
body {
margin: 0 auto;
max-width: 1000px;
display: flex;
flex-direction: column;
}
#title {
font-weight: 400;
text-transform: uppercase;
letter-spacing: .1em;
}
#subtitle {
font-weight: 300;
margin-top: 0;
color: var(--gray);
}
#canvasWrapper {
/* FOR GRID */
}
#canvasHelper {
background: var(--gray);
width: 100%;
height: 0px;
padding-bottom: 56.25%;
position: relative;
}
#canvas {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background: #333;
box-shadow: 0px 2px 3px #00000088;
}
#explaination {
/* FOR GRID */
}
#explaination h2,
#explaination h3,
#explaination h4,
#explaination h5 {
font-weight: 400;
text-transform: uppercase;
letter-spacing: .05em;
margin-bottom: 0;
}
#footer {
display: flex;
justify-content: space-between;
align-items: center;
color: #fff;
background-color: var(--dark);
font-weight: 300;
font-size: .9em;
padding: 1em;
}
#copyright {
margin: 0;
}
#footer_links {
list-style-type: none;
margin: 0;
padding: 0;
}
#footer_links > li {
margin: 0;
padding: 0;
display: inline-block;
}
#footer_links a {
/* color: #c60f56; */
color: var(--th-red);
}
#footer_links a:hover {
animation: colorCircle 10s linear 0s infinite normal forwards running;
text-decoration: none;
}
@keyframes colorCircle {
0% {
color: var(--th-red);
}
33% {
color: var(--th-orange);
}
67% {
color: var(--th-purple);
}
}