-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (50 loc) · 1.17 KB
/
Copy pathstyle.css
File metadata and controls
55 lines (50 loc) · 1.17 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
/*
* Style by D3NN7
* and Patrick Hlauke (https://codepen.io/patrickhlauke/pen/YaoBop)
*/
@font-face {
font-family: 'Noto Sans Display';
font-style: normal;
font-weight: 400;
src: url(./fonts/NotoSansDisplay-Regular.ttf);
}
html { background: #111;
padding: 1em;
font-family: Noto Sans Display;
color: #eee;
font-size: 1em;
line-height: 1;
text-shadow: 0.06rem 0 0.06rem #ea36af, -0.125rem 0 0.06rem #75fa69;
letter-spacing: 0.125em;
animation-duration: 0.01s;
animation-name: textflicker;
animation-iteration-count: infinite;
animation-direction: alternate;
}
h1 {
font-size: 5em;
text-align: center;
}
a {
color: white;
}
@media screen and (min-width: 1200px) {
body {
margin-left: 20rem;
margin-right: 20rem;
}
}
@media screen and (min-width: 600px) {
body {
margin-left: 5em;
margin-right: 5em;
}
}
@keyframes textflicker {
from {
text-shadow: 1px 0 0 #ea36af, -2px 0 0 #75fa69;
}
to {
text-shadow: 2px 0.5px 2px #ea36af, -1px -0.5px 2px #75fa69;
}
}