-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.css
More file actions
111 lines (93 loc) · 1.49 KB
/
site.css
File metadata and controls
111 lines (93 loc) · 1.49 KB
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
body {
background-color: hsl(0, 0%, 16%);
color: hsl(0, 0%, 86%);
padding: 1rem;
font-family: "Raleway", sans-serif;
}
a:link, a:visited {
color: white;
text-decoration: none;
}
a:hover, a:active {
background-color: #44444d;
}
p {
font-size: clamp(1rem, 1.46em, 1.5rem);
margin: 0;
}
h1 {
font-family: "Montserrat", sans-serif;
font-size: 4.5rem;
font-weight: 400;
line-height: 1.1;
margin: 0;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
li {
float: left;
padding-right: .7rem;
}
li a {
display: block;
text-align: center;
text-decoration: none;
}
.bg-canvas {
position: fixed;
width: 100%;
height: 100%;
margin: auto;
z-index: -1;
left: 0;
top: 0;
overflow: hidden;
}
.social-links {
font-size: clamp(1rem, 1.2em, 1.4rem);
}
.social-links img {
height: 1.5rem;
}
.full-page {
width: 100vw;
height: 100vh;
text-align: center;
display: flex;
font-size: 2.0rem;
}
.full-page .centered {
margin: auto;
}
.word-reveal {
opacity: 0;
}
.word-reveal.i-1 {
animation: reveal .8s .1s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
.word-reveal.i-2 {
animation: reveal .8s .2s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
.word-reveal.i-3 {
animation: reveal .8s .3s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
@keyframes reveal {
100% {
opacity: 1;
}
}
@media screen and (max-width: 650px) {
h1 {
font-size: 2.7rem;
}
p {
font-size: 1.0rem;
}
.social-links {
font-size: 1.0rem;
}
}