-
Notifications
You must be signed in to change notification settings - Fork 0
/
reloadit.css
128 lines (116 loc) · 2.55 KB
/
reloadit.css
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
@charset "UTF-8";
/* Generic */
body {
background: #191919 url("FILES/bg.jpg") no-repeat fixed top;
/*background: #34495E;*/
color:#eee000;
font-family:sans-serif;
}
/* Flat Buttons */
.yellow-on-black {
color: black;
font-family: verdana;
text-transform: uppercase;
background-color: #eee000;
font-weight: bold;
padding: 0.05em 0.2em;
}
input, button {
color: black;
font-weight: bold;
/*text-transform: uppercase;*/
background-color:#eee000;
padding: 2px 6px;
border:0;
}
button {
/*text-transform: normal;*/
padding: 3.5px 7px;
font-size: 1.05em;
}
/* Header Wrapper */
header {
width:100%;
overflow:auto;
/* position:fixed;
top:0;
left:0;
height:90px;*/
/* background:-webkit-linear-gradient(top, rgba(0,0,0,0.90) 10%,rgba(0,0,0,0) 100%);
background: -moz-linear-gradient(top, rgba(0,0,0,0.90) 10%,rgba(0,0,0,0) 100%);
background: linear-gradient(top, rgba(0,0,0,0.90) 10%,rgba(0,0,0,0) 100%); */
/*background: #7F8C8D;*/
/*background: #2c3e50;*/
}
nav {
text-align: right;
margin: 10px 15px;
font-family: verdana;
}
#logo {
float:left;
}
label[for="debug_checkbox"]{
color:#00AA66; /*Debug Green*/
}
label[for="debug_checkbox"] sup {
font-size:0.45em;
}
/* Debug Wrapper */
.debug_wrapper {
/*display:[inline style controlled by PHP]*/
}
.debug_wrapper ul {
list-style:none;
padding:0px;
}
.debug_wrapper b, .debug_wrapper span, .debug_wrapper textarea{
background-color:#00AA66; /*seagreen*/
color:black;
}
.debug_wrapper textarea {
width:70%;
height:15em;
}
/* Content Wrapper */
main {
max-width:75em;
margin: auto;
/*color:#0020B1; */ /*darkblue*/
/*color: #0066CC; */
/*margin-top: 140px;*/ /* header space */
}
table {
color:black;
background-color: #eee000;
border: 3px dashed black;
/*border-radius: 10px;*/
}
table input {
border:1px solid;
color: inherit;
}
.table_link {
width: 22em;
text-transform: uppercase;
-webkit-transition: background-color 0.3s;
-moz-transition: background-color 0.3s;
transition: background-color 0.3s;
}
.table_link:hover {
background-color: yellow;
cursor:pointer;
}
table h2 img {
float:left;
}
.small_text {
font-size: 0.5em;
font-weight: normal;
}
footer {
position: fixed;
bottom: 0;
right: 0;
padding: 0.5em 0.8em;
}