source: trunk/nagios-velvice/velvice.css @ 283

Last change on this file since 283 was 283, checked in by g7moreau, 6 years ago
  • Create button
File size: 1.9 KB
Line 
1/* header */
2.header h1 {
3   color:            #88D066;
4   border-bottom:    2px solid;
5   border-color:     black;
6   border-left:      2px solid;
7   border-radius:    0px 0px 0px 3ex;
8   border-color:     #AACCFF;
9   margin-left:      2%;
10   }
11
12/* https://stackoverflow.com/questions/14920401/how-to-simulate-hfill-with-html-and-css */
13.header h1 ul {
14   display:          flex;
15   justify-content:  space-between;
16   margin:           0.5ex;
17   }
18
19.header h1 li {
20   display:          inline;
21   }
22
23a#refresh {
24   background:       #E0E0E0;
25   border-radius:    1.8ex;;
26   margin-left:      2ex;
27   padding:          0.3ex 1.3ex;
28   text-decoration:  none;
29   }
30
31a#refresh:after { 
32   content:          "\00A0\21bb";
33   }
34
35/* general */
36a:link, a:visited {
37   text-decoration:  none;
38   }
39
40a:hover, a:active {
41   text-decoration:  underline solid;
42   }
43
44span.button {
45    border:          1px solid #777777;
46    margin:          10px 3px 3px 4px;
47    background:      #E0E0E0;
48    border-radius:   2ex;
49    padding:         0ex 0.5ex 0px 0ex;
50    }
51
52.button a {
53   background:       #E0E0E0;
54   border-right:     3px solid #777777;
55   border-radius:    2ex 0px 0px 2ex;
56   padding:          0px 0.5ex 0ex 0.9ex;
57   }
58
59.button small {
60   padding:          0px 0.2ex 0ex 0.8ex;
61   }
62
63p {
64   line-height:      3ex;
65   }
66
67table {
68   border:           none;
69   margin:           0;
70   }
71
72td {
73   border:           0px;
74   }
75
76td.bold {
77   font-weight:      bold;
78   }
79
80td.hoop {
81   border:           1px solid #777777;
82   }
83
84hr {
85   border-style:     solid;
86   border-width:     1px;
87   color:            #AACCFF;
88   margin-top:       4ex;
89   width:            70%;
90   }
91
92/* action */
93.action h2 {
94   color:            #88D066;
95   }
96
97/* footer */
98.footer {
99   float :           right;
100   margin-right:     5%;
101   }
102
103div.footer {
104   font-size:        xx-small;
105   color:            #666;
106   }
107
108.footer ul {
109   margin-top:       0.8ex;
110   }
Note: See TracBrowser for help on using the repository browser.