blob: 7b7bd3fd056877c8cf9becf2b8f6e5620ddf5565 (
plain) (
blame)
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
|
:root {
--item-bg-color: #0073E6;
--link-hover-color: #0080FF;
--padding: 10px;
--width: 50%;
--min-width: 850px;
}
.header {
background-color: white;
border-bottom: 3px solid #ddd;
width: var(--width);
min-width: var(--min-width);
border-radius: 5px;
}
.footer {
background-color: white;
border-top: 3px solid #ddd;
width: var(--width);
min-width: var(--min-width);
border-radius: 5px;
line-height: 30px;
}
.menu {
border-collapse: collapse;
}
.menu-alternative {
border: 1px solid #ddd;
}
.add-padding {
padding: var(--padding);
}
.menu-item {
/* border: 1px solid #ddd; */
text-transform: uppercase;
font-weight: bold;
font: 20px Arial, sans-serrif;
}
.list-centered {
position: relative;
text-align: left;
left: 20%;
}
.btn {
background-color: var(--item-bg-color);
color: #FFFFFF;
padding: var(--padding);
text-align: center;
display: inline-block;
border-radius: 10px;
}
.btn:hover, .btn:active {
padding: var(--padding);
background-color: var(--link-hover-color);
border-radius: 5px;
}
a:link, a:visited {
text-decoration: none;
}
.hyperlink {
color: #3333FF;
font-family: Optima, sans-serif;
}
.content {
border-left: 3px solid #ddd;
border-right: 3px solid #ddd;
background-color: white;
border-radius: 5px;
height: 80%;
width: var(--width);
min-width: var(--min-width);
}
|