Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/wwwroot/css/StyleSheet.css @ 13754

Last change on this file since 13754 was 13733, checked in by jlodewyc, 9 years ago

#2582 Last fixes Job Manager

File size: 2.0 KB
Line 
1@import url(http://fonts.googleapis.com/css?family=Roboto:400);
2body {
3  background-color:#fff;
4  -webkit-font-smoothing: antialiased;
5  font: normal 14px Roboto,arial,sans-serif;
6}
7
8.container {
9    padding: 25px;
10    position: fixed;
11}
12
13
14.form-login {
15    background-color: #EDEDED;
16    padding-top: 10px;
17    padding-bottom: 20px;
18    padding-left: 20px;
19    padding-right: 20px;
20    border-radius: 15px;
21    border-color:#d2d2d2;
22    border-width: 5px;
23    box-shadow:0 1px 0 #cfcfcf;
24}
25
26h4 {
27 border:0 solid #fff;
28 border-bottom-width:1px;
29 padding-bottom:10px;
30 text-align: center;
31}
32
33.form-control {
34    border-radius: 10px;
35}
36
37.wrapper {
38    text-align: center;
39}
40.panel-warning > .panel-heading{
41    background-image: linear-gradient(to bottom,#eb9114 0,#f1b25b 100%)!important;
42    color:white!important;
43}
44.panel-danger > .panel-heading{
45    background-image: linear-gradient(to bottom,#c12e2a 0,#d9534f 100%)!important;
46    color:white!important;
47}
48
49.label-as-badge {
50    border-radius: 1em;
51}
52
53.bar-off{
54    fill : #c2c2d6;
55}
56.bar-off:hover{
57    fill : #e0e0eb;
58}
59.bar-wait{
60   
61    fill : #f0a742;
62}
63.bar-wait:hover{
64    fill : #f4bd71;
65}
66.bar-trans{
67    fill : #80d4ff;
68}
69.bar-trans:hover{
70    fill : #99ddff;
71}
72.bar-calc{
73    fill : #2f6fa6;
74}
75.bar-calc:hover{
76    fill : #3884c7;
77}
78.bar-paus{
79    fill : #47476b;
80}
81.bar-paus:hover{
82    fill : #5c5c8a;
83}
84.bar-fin{
85    fill : #5cb85c;
86}
87.bar-fin:hover{
88    fill : #71c171;
89}
90.bar-abo{
91    fill : #c2302c;
92}
93.bar-abo:hover{
94    fill : #d54944;
95}
96.bar-fail{
97    fill : #c2302c;
98}
99.bar-fail:hover{
100    fill : #d54944;
101}
102
103rect.selection {
104    stroke          : gray;
105    stroke-dasharray: 4px;
106    stroke-opacity  : 0.5;
107    fill            : transparent;
108}
109
110    /* disable text selection */
111svg *::selection {
112    background : transparent;
113}
114
115svg *::-moz-selection {
116    background:transparent;
117}
118
119svg *::-webkit-selection {
120    background:transparent;
121}
Note: See TracBrowser for help on using the repository browser.