forked from Maxwellcrafter/maxwellcrafter.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
item.css
51 lines (50 loc) · 957 Bytes
/
item.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
img {
border-radius: 5vw;
}
body {
background-color: black;
}
div {
width: 75%;
height: 95%;
}
a {
font-family: monospace, "lucidia console", "sans-serif";
text-shadow: 0 0 1px #FF00FF;
color: white;
font-weight: bold;
font-size: 16px;
font-size: 2vw;
text-decoration: none;
letter-spacing: 0.01em;
}
h1 {
font-family: monospace, "lucidia console", "sans-serif";
color: white;
font-weight: bold;
font-size: 24px;
font-size: 4vw;
text-decoration: none;
}
h3 {
font-family: monospace, "lucidia console", "sans-serif";
color: white;
font-weight: bold;
font-size: 10px;
font-size: 1vw;
text-decoration: none;
}
.blinking{
animation:blinkingText 1.5s infinite;
color: white;
font-family: monospace, "lucidia console", "sans-serif";
font-size: 16px;
font-size: 2vw;
}
@keyframes blinkingText{
0%{color:#FFF;}
49%{color:#FFF;}
60%{color:transparent;}
99%{color:transparent;}
100%{color:#FFF;}
}