-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
83 lines (74 loc) · 1.2 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
*{
margin: 0;
padding: 0;
}
body{
background-color: #171923;
}
.text{
color: #C31331;
display: flex;
text-align: center;
justify-content: center;
align-items: center;
font-size: 10em;
letter-spacing: 55px;
font-family: 'Rubik', sans-serif;
height: 75vh;
cursor: default;
text-shadow: 1px 2px #37C978;
}
.error-text{
color: #C31331;
text-align: center;
letter-spacing: 5px;
font-size: 5em;
font-weight: 200;
font-family: 'Monoton', cursive;
cursor: default;
}
.none{
color: #F79E1B;
animation-duration: 2s;
animation-name: weaykeazon;
animation-iteration-count: infinite;
animation-direction: alternate;
}
.home i{
position: absolute;
font-size: 3em;
padding: 40px 10px 10px 40px;
color: #CBB2AB;
transition: 0.2s;
}
.home i:hover{
color: #CBB15B;
}
.blutext{
color: #37C978;
display: flex;
text-align: center;
justify-content: center;
align-items: center;
font-size: 2em;
letter-spacing: 8px;
font-family: 'Rubik', sans-serif;
cursor: default;
max-width: 1600px;
}
@keyframes weaykeazon{
from{
transform: rotate(40deg);
}
to{
transform: rotate(-40deg);
}
}
@media screen and (max-width: 980px) {
.home i{
font-size: 8em;
}
.text{
font-size: 15em;
}
}