blob: 02ee9588c4d15f6762d4c7f1a86434f18f476edd (
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
|
@font-face{
src: url("/fonts/cantarell-regular.otf");
font-family: "Cantarell Regular";
}
html{
background: linear-gradient(135deg, #000022, #000099);
background-size: cover;
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;
font-family: "Cantarell Regular";
}
body{
background: linear-gradient(135deg, #000022, #000099);
background-size: cover;
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;
font-family: "Cantarell Regular";
}
.gtext{
color: #FF9900;
}
.xgradbg{
background: linear-gradient(135deg, #AA0000, #FF9900);
border-radius: 5px;
}
.page_link{
color: #FFFFFF;
text-decoration: none;
}
.page_link:hover{
text-decoration: underline;
color: #FFFFFF;
transition-duration: 0.25s;
-moz-transition-duration: 0.25s;
-webkit-transition-duration: 0.25s;
}
.page_link:not(:hover){
text-decoration: none;
color: #FFFFFF;
transition-duration: 0.25s;
-moz-transition-duration: 0.25s;
-webkit-transition-duration: 0.25s;
}
|