blob: d713b66c1f4223b38c8c37fcf5738865127a19ba (
plain) (
blame)
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
|
/* ####################### */
/* */
/* Texx */
/* by Marvin Borner */
/* & Marco Alexander Fischer */
/* */
/* ####################### */
* {
text-align: center;
background-color: #282828;
font-family: Comfortaa;
}
body {
margin-top: 10rem;
}
.Main-Content {
color: white;
}
.Social {
font-size: 35px;
}
a:visited {
color: white;
}
a {
color: white;
text-decoration: none;
transition: .5s;
}
a:hover {
color: #1457c6;
}
|