blob: e07eadfe3fc29955d2a2c1e3db4185bd88ae200d (
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
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
|
@font-face{
font-family: "FreeMono";
src: url('../fonts/FreeMono.ttf');
}
:root{
font-family: "FreeMono";
background-image: linear-gradient(135deg, #000000, #222222);
background-size: 100% 100%;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: center;
width: 100%;
height: 100%;
min-height: 100%;
min-width: 100%;
top: 0px;
left: 0px;
bottom: 0px;
margin: 0px;
}
body{
font-family: "FreeMono";
background-image: linear-gradient(135deg, #000000, #222222);
background-size: 100% 100%;
background-attachment: fixed;
background-repeat: no-repeat;
background-position: center;
width: 100%;
height: 100%;
min-height: 100%;
min-width: 100%;
top: 0px;
left: 0px;
bottom: 0px;
margin: 0px;
}
.page_header_background{
width: 99%;
top: 10px;
background: linear-gradient(180deg, #000000, #FF9900);
position: relative;
border-radius: 10px;
height: 185px;
}
.page_header_title{
top: 0px;
position: relative;
font-weight: bold;
}
.page_nav{
background-color: #000000;
position: relative;
width: 100%;
word-wrap: break-word;
}
.content{
margin: auto;
background-color: #222222;
position: relative;
top: 40px;
width: 95%;
box-shadow: 0px 0px 5px #FF9900;
border-radius: 10px;
margin-bottom: 40px;
}
.content_inner{
height: 100%;
position: relative;
margin: 0px 20px;
word-wrap: break-word;
}
.content_link{
font-size: 24px;
color: #FF9900;
}
.wtext{
color: #FFFFFF;
}
.nav_link{
color: #FF9900;
height: 100%;
font-size: 24px;
font-weight: bold;
padding: 0px 1px;
text-decoration: none;
position: relative;
}
.nav_link:hover{
text-decoration: underline;
cursor: pointer;
background-color: #FF9900;
color: #000000;
transition-duration: 0.25s;
-moz-transition-duration: 0.25s;
-webkit-transition-duration: 0.25s;
}
.nav_link:not(:hover){
text-decoration: none;
background-color: #000000;
color: #FF9900;
transition-duration: 0.25s;
-moz-transition-duration: 0.25s;
-webkit-transition-duration: 0.25s;
}
.content_title{
font-weight: bold;
font-size: 35px;
margin: 0px 20px;
position: relative;
}
.content_text{
color: #FFFFFF;
font-size: 24px;
position: relative;
}
|