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
|
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300,400);
*, html, body, h1, h2, h3, h4, div, p, span, a, button {
font-family: 'Open Sans', sans-serif;
}
body {
background-color: #eee;
background-image: url('http://politeia.in/assets/img/bg/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);
}
/* 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 */
#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;
}
#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;
}
#tableNSAccess td {
vertical-align: middle;
}
#tableNSAccess td:first-child {
padding-right: 10px;
text-align: left;
}
#tableNSAccess td:last-child {
padding-right: 10px;
text-align: right;
}
#tableNSAccess th small {
font-weight: normal;
}
/* 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-default .navbar-nav > li > a {
color: #777777;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color: #333333;
border-bottom: 3px solid #0082D9;
margin-bottom: -3px;
}
|