]> git.ipfire.org Git - people/jschlag/pbs.git/blob - src/static/css/style.css
Drop dependency on textile
[people/jschlag/pbs.git] / src / static / css / style.css
1 body {
2 position: relative;
3 padding-top: 55px;
4
5 background-image: linear-gradient(
6 bottom,
7 #000000 0%,
8 #880400 57%
9 );
10 background-image: -o-linear-gradient(
11 bottom,
12 #000000 0%,
13 #880400 57%
14 );
15 background-image: -moz-linear-gradient(
16 bottom,
17 #000000 0%,
18 #880400 57%
19 );
20 background-image: -webkit-linear-gradient(
21 bottom,
22 #000000 0%,
23 #880400 57
24 );
25 background-image: -ms-linear-gradient(
26 bottom,
27 #000000 0%,
28 #880400 57%
29 );
30 background-image: -webkit-gradient(
31 linear,
32 left bottom,
33 left top,
34 color-stop(0, #000000),
35 color-stop(0.57, #880400)
36 );
37 background-attachment: fixed;
38 }
39
40 .container-body {
41 background-color: white;
42
43 padding: 20px;
44 }
45
46 .ac, th.ac {
47 text-align: center;
48 }
49
50 .ar, th.ar, td.ar {
51 text-align: right;
52 }
53
54 .clear {
55 clear: both;
56 }
57
58 .dropdown-login {
59 padding: 15px;
60 padding-bottom: 0px;
61 }
62
63 .dropdown-login input[type="submit"] {
64 clear: left;
65 width: 100%;
66 }
67
68 .dropdown-login .links {
69 text-align: center;
70 margin-bottom: 15px;
71 }
72
73 .lead-small {
74 font-size: 21px;
75 }
76
77 .line-through {
78 text-decoration: line-through;
79 }
80
81 .jobs-boxes .well {
82 background: #fff;
83 }
84
85 .jobs-boxes h4 span {
86 font-weight: bold;
87 }
88
89 .jobs-boxes .warning {
90 background-color: #fcf8e3;
91 }
92
93 .jobs-boxes .error {
94 background-color: #f2dede;
95 }
96
97 .jobs-boxes .success {
98 background-color: #dff0d8;
99 }
100
101 .jobs-boxes .info {
102 background-color: #d9edf7;
103 }
104
105 .jobs-boxes .well table td {
106 width: 50%;
107 }
108
109 .well {
110 background-color: white;
111 }
112
113 .well-build-state-stable {
114 border-color: #468847;
115 }
116
117 .well-build-state-unstable {
118 border-color: #f89406;
119 }
120
121 .well-build-type-scratch, .well-build-state-testing {
122 border-color: #b94a48;
123 }
124
125 p.huge {
126 font-size: 4em;
127 font-weight: bold;
128 margin-top: 0.2em;
129 margin-bottom: 0.4em;
130 }