-
Notifications
You must be signed in to change notification settings - Fork 0
/
rain.css
206 lines (179 loc) · 3.93 KB
/
rain.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
body {
margin: 0;
font-size: 18px;
background-color: #000;
}
.Main a {
display: inline-block;
width: auto;
max-width: 100%;
}
.container {
background-color: rgba(255, 255, 255, 0.85);
margin: 50px 10%;
padding: 3rem;
position: relative;
z-index: 1;
}
#canv {
position: fixed;
top: 0;
left: 0;
}
/* CSS für Regen-Effekt */
@font-face {
font-family: 'emizen';
src: local('emizen'), url('emizen.ttf') format('truetype');
}
/* Header-Stile */
header {
text-align: left;
font-size: 80px;
color: white;
font-family: 'emizen', sans-serif;
}
/* Body-Stile */
body {
background: black; /* Hintergrundfarbe */
color: white;
text-align: left;
}
/* Container-Stile */
.container {
display: grid;
grid-template-columns: 1fr 2fr 1fr;
grid-template-rows: 1fr 3fr 1fr;
gap: 20px;
grid-auto-flow: row;
grid-template-areas:
"Top Top Top"
"Sidebar Main Main"
"Bottom Bottom Bottom";
background-color: rgba(0, 0, 0, 0.85); /* Hintergrundfarbe */
margin: 20px 5%; /* Geänderte Margin mit kleinerem oberen und linken Abstand */
padding: 3rem;
position: relative;
z-index: 1;
}
/* Top-Stil */
.Top {
grid-area: Top;
}
/* Sidebar-Stil */
.Sidebar a {
grid-area: Sidebar;
box-shadow: inset 0 0 0 0 #52d1ff;
margin: 0 -.25rem;
padding: 0 .25rem;
transition: color .5s ease-in-out, box-shadow .5s ease-in-out;
}
.Sidebar a:link,
.Sidebar a:visited {
/* Aktuelle Breite: 20px */
/* Ändere die Breite nach Bedarf */
width: 200px; /* Beispiel: Längere Breite von 200px */
background-color: rgb(0, 0, 0);
color: rgb(0, 255, 162);
border: 2px solid rgb(255, 0, 204);
padding: 10px 20px;
margin-bottom: 10px;
text-align: center;
display: block;
font-family: 'emizen', sans-serif;
text-decoration: none;
}
.Sidebar a:hover {
box-shadow: inset 1000px 0 0 0 #7409ff;
color: white;
}
/* Main-Stil */
.Main {
grid-area: Main;
}
/* Bottom-Stil */
.Bottom {
grid-area: Bottom;
}
a {
box-shadow: inset 0 0 0 0 #52d1ff;
margin: 0 -.25rem;
padding: 0 .25rem;
transition: color .5s ease-in-out, box-shadow .5s ease-in-out;
}
/* Link-Stile */
a:link,
a:visited {
background-color: rgb(0, 0, 0);
color: rgb(0, 255, 162);
border: 2px solid rgb(255, 0, 204);
padding: 10px 20px;
margin-top: 10px;
text-align: center;
display: block;
font-family: 'emizen', sans-serif;
text-decoration: none;
position: relative;
transition: color .5s ease-in-out, box-shadow .5s ease-in-out;
}
a:hover {
color: rgb(255, 255, 255);
background-color: rgb(83, 0, 184);
border: 2px solid rgb(255, 0, 204);
padding: 10px 20px;
margin-top: 10px;
text-align: center;
display: block;
font-family: 'emizen', sans-serif;
text-decoration: none;
box-shadow: inset 1500px 0 0 0 #7409ff;
transition: box-shadow 0.5s ease-in-out;
}
/* Tabelle-Stile */
table {
width: 80%;
margin-top: 0px;
border-collapse: collapse;
}
th,
td {
border: 2px solid rgb(255, 0, 204);
padding: 0px 20px;
text-align: left;
}
th {
background-color: rgb(0, 0, 0);
color: rgb(0, 255, 162);
}
html, body {
overflow: hidden;
}
.icon-link {
display: flex;
align-items: left;
text-decoration: none; /* Entferne Unterstreichung für Links */
}
.icon {
width: 100px; /* Passe die Breite des Bildes an */
height: 100px; /* Passe die Höhe des Bildes an */
margin-right: 10px; /* Abstand zwischen Bild und Text */
}
.icon-text {
font-size: 80px; /* Passe die Schriftgröße des Textes an */
z-index: 1;
}
.video-container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 0px;
}
#demo {
font-family: 'emizen', sans-serif;
font-size: 50px;
text-align: center;
}
#timer {
font-family: 'emizen', sans-serif;
font-size: 50px;
text-align: center;
}