blob: 744f24a9d218cc8922d148f245cd2a68345df472 (
about) (
plain)
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
|
@font-face{
src: url("/fonts/OpenSans-Regular.ttf");
font-family: "OpenSans-Regular";
}
body{
background: linear-gradient(120deg, #FF0000, #000000);
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
font-family: "OpenSans-Regular";
height: 100%;
overflow: scroll;
}
a{
color: #FFFF00;
}
a:hover{
color: #BFC700;
}
.dark_navbar{
background-color: rgba(0, 0, 0, 0.7);
}
.navbar_logo{
position: relative;
width: 64px;
height: 64px;
}
.navbar_link{
font-size: 20px;
color: #FFFFFF;
}
.wtext{
color: #FFFFFF;
}
.content_box{
background-color: rgba(0, 0, 0, 0.7);
position: relative;
margin: auto;
}
.content_title{
font-size: 32px;
}
.content_text{
font-size: 18px;
}
.dropdown_item_transition{
transition-duration: 0.25s;
-moz-transition-duration: 0.25s;
-webkit-transition-duration: 0.25s;
}
|