-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
98 lines (83 loc) · 1.89 KB
/
stylesheet.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
@font-face {
font-family: 'fontello';
src: url('./font/fontello.eot?97417248');
src: url('./font/fontello.eot?97417248#iefix') format('embedded-opentype'),
url('./font/fontello.woff?97417248') format('woff'),
url('./font/fontello.ttf?97417248') format('truetype'),
url('./font/fontello.svg?97417248#fontello') format('svg');
font-weight: normal;
font-style: normal;
}
/* Fade In animation, courtesy of https://blog.hubspot.com/website/css-fade-in*/
.fade-in {
animation: fadeIn ease 1s;
-webkit-animation: fadeIn ease 1s;
-moz-animation: fadeIn ease 1s;
-o-animation: fadeIn ease 1s;
-ms-animation: fadeIn ease 1s;
}
@keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-moz-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-webkit-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-o-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
@-ms-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}
/* Fade In animation */
body, html {
background-color: #121212;
color: white;
-webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
h1 {
font-family: 'Raleway', Helvetica, Arial, sans-serif;
font-weight: 900;
font-size: 2.5rem;
}
p {
font-family: 'Raleway', Helvetica, Arial, sans-serif;
}
#pfp {
display: block;
margin-left: auto;
margin-right: auto;
width: 10rem;
border-radius: 50%;
}
/* copy pasted from somewhere ;; */
.centered {
width: 30rem;
height: 30rem;
position:absolute;
left:0; right:0;
top:0; bottom:0;
margin:auto;
max-width:100%;
max-height:100%;
overflow:auto;
text-align: center;
}
.links a {
color: #e6ded1;
font-size: 1.5rem;
width: 1.5rem;
height: 1.5rem;
text-decoration: none;
}
a {
color: #63f7ff;
}