-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSchlumpf.css
129 lines (116 loc) · 2.4 KB
/
Schlumpf.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
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
128
129
/*
#####################################################
# #
# Schlumpf.css #
# #
#####################################################
*/
#Schlumpf {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 100%;
}
#Schlumpf div {
margin: auto;
width: 50%;
text-align: center;
border: 3px solid green;
padding: 10px;
}
#footer {
padding-top: 12px;
padding-bottom: 12px;
text-align: center;
background-color: black;
color: white;
font-style: italic;
font-weight: bold;
}
#tablehead {
margin: auto;
width: 50%;
text-align: center;
// border: 3px solid green;
// padding: 10px;
}
#Schlumpf table {
margin: auto;
// width: auto;
padding: 10px;
}
#Schlumpf td, #Schlumpf th {
border: 1px solid #ddd;
padding: 8px;
}
#Schlumpf tr:nth-child(even){background-color: #f2f2f2;}
#Schlumpf tr:hover {background-color: #ddd;}
#Schlumpf th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #4CAF50;
color: white;
}
/*###################################################
# #
# horizontal menu navigation #
# #
###################################################*/
#content a, .menu a:link, .menu a:active, .menu a:visited
{
text-decoration: none;
}
#content a:hover
{
background-color: black;
color: white;
}
.nav
{
align: center;
margin: 10px 10px;
padding-top: 8px;
padding-bottom: 10px;
padding-left: 8px;
background: none;
}
.nav li
{
list-style-type: none;
display: inline;
padding: 10px 30px;
background-color: #e67e22;
margin-left: -11px;
font-size: 120%;
}
.nav li:first-child
{
margin-left: 0;
border-top-left-radius: 10px !important;
border-bottom-left-radius: 10px !important;
}
.nav li:last-child
{
margin-right: 0px;
border-top-right-radius: 10px !important;
border-bottom-right-radius: 10px !important;
}
.nav a, .menu a:link, .menu a:active, .menu a:visited
{
text-decoration: none;
color: white;
border-bottom: 0;
padding: 10px 10px;
}
.nav a:hover
{
text-decoration: none;
background: #9b59b6;
padding: 10px 10px;
}
ul.nav li a.current
{
text-decoration: none;
background: #e74c3c;
padding: 10px 10px;
}