-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
124 lines (107 loc) · 2.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/** Sowwyz#1337 */
/** Sowwyz#1337 */
/** Sowwyz#1337 */
/** Sowwyz#1337 */
body {
background-color: black;
background-image: url('poze/clouds_repeat.png');
background-size: auto 100%;
animation: move-clouds 60s linear infinite;
}
@keyframes move-clouds {
from {
background-position: 0 0;
}
to {
background-position: 100% 0;
}
}
@keyframes moveBackground {
from { background-position: 0 0; }
to { background-position: -100% 0; }
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
/** Sowwyz#1337 */
/** Sowwyz#1337 */
/** Sowwyz#1337 */
/** Sowwyz#1337 */
h1 {
color: white;
font-size: 64px;
text-align: center;
font-style: italic;
font-family: 'coolvetica', sans-serif;
position: relative;
z-index: 1;
}
h1 img:nth-of-type(1) {
position: absolute;
top: -52.5px;
left: -25px;
z-index: -1;
height: 200px;
}
/** Sowwyz#1337 */
/** Sowwyz#1337 */
/** Sowwyz#1337 */
/** Sowwyz#1337 */
h1 img:nth-of-type(2) {
position: absolute;
top: -30px;
left: -20px;
z-index: -1;
height: 140px;
}
h1 span {
color: red;
text-decoration: underline;
text-decoration-color: red;
text-underline-offset: 2px;
text-decoration-thickness: 3px;
}
/** Sowwyz#1337 */
/** Sowwyz#1337 */
/** Sowwyz#1337 */
button {
background-color: transparent;
border: none;
padding: 10px;
margin: 0 10px;
border-radius: 10px;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
cursor: pointer;
transition: all 0.3s ease;
}
button:hover {
transform: scale(1.1);
}
/** Sowwyz#1337 */
/** Sowwyz#1337 */
/** Sowwyz#1337 */
/** Sowwyz#1337 */
/** Sowwyz#1337 */
/** Sowwyz#1337 */
/** Sowwyz#1337 */
button img {
height: 40px;
}
.discord-logo:hover {
cursor: pointer;
}
/** Sowwyz#1337 */
/** Sowwyz#1337 */
/** Sowwyz#1337 */
/** Sowwyz#1337 */
@font-face {
font-family: 'coolvetica';
src: url('fonts/coolvetica.otf') format('opentype');
}
/** Sowwyz#1337 */
/** Sowwyz#1337 */
/** Sowwyz#1337 */