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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
@import url(//fonts.googleapis.com/css?family=Open+Sans:300,400);
@import url(//fonts.googleapis.com/css?family=Port+Lligat+Slab);
*, html, body, h1, h2, h3, h4, div, p, span, a, button {
font-family: 'Open Sans', sans-serif;
}
body {
background-color: #eee;
background-image: url('/static/cubes.png');
}
/* RANDOM STUFF */
#frontPages {
padding-top: 20px;
}
h2 {
margin: 0 0 10px 0;
}
h4 {
margin-top: 30px;
}
.popover {
max-width: 450px;
-webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
box-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
}
.label {
font-size: 13px;
font-weight: normal;
}
.label-info {
background-color: #4EA4EE;
}
.label-info[href]:hover, .label-info[href]:focus {
background-color: #428BCA;
}
/* LOGIN FORM */
.form-signin .form-signin-heading, .form-signin .checkbox {
margin-bottom: 10px;
}
.form-signin .checkbox {
font-weight: normal;
}
.form-signin .form-control {
position: relative;
font-size: 16px;
height: auto;
padding: 10px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.form-signin .form-control:focus {
z-index: 2;
}
/* FOOTER */
.footer {
margin-top: 20px;
}
/* Control Panel */
.panel-default .panel-heading {
font-size: 24px;
}
#loggedIn {
margin: 15px 15px 0 0;
}
#navPanel {
margin: 0;
padding: 0;
}
.table thead > tr:first-child > th, .table tbody > tr:first-child > th, .table tfoot > tr:first-child > th, .table thead > tr:first-child > td, .table tbody > tr:first-child > td, .table tfoot > tr:first-child > td {
vertical-align: top;
border-top: 0;
}
#tableInfo td {
vertical-align: middle;
}
#tableInfo td:first-child {
font-weight: bold;
padding-right: 10px;
text-align: right;
width: 25%;
}
#tableInfoNorm td {
vertical-align: middle;
}
#tableInfoNorm td:first-child {
font-weight: bold;
padding-right: 10px;
}
#tableInfoMemos td {
vertical-align: top;
}
#tableInfoMemos td:first-child {
font-weight: bold;
padding-right: 10px;
}
#tableInfoMemos th small {
font-weight: normal;
}
#tableAccess td {
vertical-align: middle;
}
#tableAccess td:first-child {
padding-right: 10px;
text-align: left;
}
#tableAccess td:last-child {
padding-right: 10px;
text-align: right;
}
#tableAccess th small {
font-weight: normal;
}
#channelList li {
margin-top: 10px;
}
/* NAVBAR */
.navbar, .well {
background-color: white;
}
.navbar {
-webkit-box-shadow: 0 8px 6px -8px black;
-moz-box-shadow: 0 8px 6px -8px black;
box-shadow: 0 8px 6px -8px black;
}
.navbar-brand {
font-size: 25px;
}
.navbar-brand, .navbar-brand small {
font-family: 'Port Lligat Slab', serif;
}
.navbar-default .nav {
margin-bottom: -1px;
}
.navbar-default .nav > li > a {
color: #428BCA;
}
.navbar-default .nav > li > a:hover, .navbar-default .nav > li > a:focus {
color: #428BCA;
border-top: 3px solid #0082D9;
margin-top: -3px;
}
.navbar-default .nav > li.active > a, .navbar-default .nav > li.active > a:hover, .navbar-default .nav > li.active > a:focus {
color: #428BCA;
background-color: transparent;
background-color: rgba(66, 139, 202, 0.1);
border-bottom-color: transparent;
}
|