-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
95 lines (80 loc) · 1.54 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
body {
background-image: url("background/arkaplan.png");
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
font-family: 'Press Start 2P', cursive;
cursor: url("background/cursor_icons_1.png"), auto;
color: #9E2630;
overflow: hidden;
}
main {
display: none;
}
.loader {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: 0;
left: 0;
height: 100vh;
width: 100vw;
}
a {
cursor: url("background/cursor_icons_19.png"), auto;
color: #9E2630;
transition: none;
display: block;
width: 100%;
text-align: center;
padding-top: 5px;
padding-bottom: 5px;
}
a:hover {
color: #020A11;
background-color: #D9DFB9;
animation: blink 1s infinite;
}
@keyframes blink {
0% {
color: #020A11;
background-color: #D9DFB9;
}
49% {
color: #020A11;
background-color: #D9DFB9;
}
50% {
color: #9E2630;
background: none;
}
100% {
color: #9E2630;
background: none;
}
}
h1 {
font-size: 5vw;
text-align: center;
text-shadow: 3px 3px 0px #460303;
}
hr {
border: 1px dashed #9E2630;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
}
header a {
width: fit-content;
display: flex;
justify-content: center;
align-items: center;
}
header a svg {
fill: #9E2630;
}