blob: f6319cc9541295335d37a61bff21225f2c2dbe02 (
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
|
html {
position: relative;
min-height: 100%;
}
body {
margin-bottom: 60px;
}
a {
color: #3083D6;
}
/* navbar */
.navbar-default {
background-color: #3083D6 ;
border-color: #3083D6 ;
background: #3083D6 ;
}
.navbar-default .navbar-brand {
color: white;
}
.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
}
.navbar-default .navbar-nav > li > a {
color: white;
}
/* footer */
.footer {
background-color: #3083D6 ;
border-color: #3083D6 ;
background: #3083D6 ;
color: white ;
position: absolute;
bottom: 0;
width: 100%;
}
.footer-a {
color: white;
}
.footer-a:hover {
color: white;
text-decoration: underline;
}
/* noscript */
.noscript {
background-color: #dd5148;
color: white;
}
.table-center {
margin: 0 auto !important;
float: none !important;
}
.disabled {
color: #5E5E5E;
text-decoration: line-through;
}
.random-bg {
transition: all 1500ms;
}
.random-font {
transition: all 1500ms;
}
.wrapper {
overflow: hidden;
}
#loader-bg {
position: fixed;
/*
top: 0;
left: 0;
right: 0;
bottom: 0;
*/
background-color: #fefefe;
z-index: 99999;
height: 100%;
width: 100%;
overflow: hidden !important;
visibility: hidden;
}
#loader {
width: 40px;
height: 40px;
position: absolute;
left: 50%;
top: 50%;
background-image: url(/img/loading.gif);
background-repeat: no-repeat;
background-position: center;
-webkit-background-size: cover;
background-size: cover;
margin: -20px 0 0 -20px;
visibility: hidden;
}
.fa-external-link {
font-size: .5em;
}
.a-black{
color: black;
}
.a-restore:hover{
text-decoration: none;
}
.desc{
color: #666666;
}
.font-small{
font-size: .8em;
}
.nav-tabs{
margin: 20px;
}
|