-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (77 loc) · 1.92 KB
/
style.css
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
/* style sheet for the DeviceAvailability.html
Use the block ":root" to change the colors.
@author: Tobias Machnitzki (tobias.machnitzki@mpimet.mpg.de)
*/
/* -- Color definition: --*/
:root {
--headbackground: #9BD770;
--headtext: #1B3409;
--bodybackground: #EBF7E3;
--buttonbackground: #66B032;
--buttonbackgroundhover: #5DADE2;
--buttontext: #FDFEFE;
--buttontexthover: var(--buttontext);
--info: #FFFFFF;
}
.bk-root .bk-bs-btn-success {
color: var(--buttontext);
background-color: var(--buttonbackground);
border-color: var(--buttonbackground);
}
.bk-root .bk-bs-btn-success:focus {
color: var(--buttontext);
background-color: var(--buttonbackground);
border-color: var(--buttonbackground);
}
.bk-root .bk-bs-btn-success:active {
color: var(--buttontext);
background-color: var(--buttonbackground);
border-color: var(--buttonbackground);
}
.bk-root .bk-bs-btn-success:hover {
color: var(--buttontexthover);
background-color: var(--buttonbackgroundhover);
border-color: var(--buttonbackgroundhover);
}
#container {
margin-left: 20px;
margin-right: 20px;
width: auto;
height: 1300px;
background-color: var(--bodybackground);
}
#header {
width: auto;
height: 100px;
background-color: var(--headbackground);
color: var(--headtext);
text-align: center;
vertical-align: middle;
font-weight: bold;
}
/* --- Kommentar ---
die Box #navigation wird vom nachfolgenden Element (#content) umflossen ---- */
#navigation {
width: 300px;
margin-left: 1480px;
margin-top: 100px;
padding: 10px;
border: 4px solid var(--headtext);
background: var(--info);
border-radius: 15px;
-moz-border-radius: 15px;
}
#content {
width: 750px;
min-height: 800px;
margin-right: 200px;
float: left;
}
#footer {
width: 950px;
height: 80px;
}
span {
display: inline-block;
vertical-align: middle;
}