-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsharedstyles.css
More file actions
125 lines (103 loc) · 1.8 KB
/
sharedstyles.css
File metadata and controls
125 lines (103 loc) · 1.8 KB
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
body{
background-color: paleturquoise;
font-family: Verdana;
text-align: justify
}
a{
color: forestgreen;
text-decoration: none;
}
ul.topbaritem{
list-style-type: none;
margin: 0;
padding: 0;
background-color: darkturquoise;
position: fixed;
top: 0;
left: 0;
width: 100%;
}
.topbaritem li{
float:left;
}
.topbaritem a{
display: block;
padding: 10px 10px;
color: white;
text-decoration: none;
}
.topbaritem a:hover{
background-color: mediumaquamarine;
}
div#topbarspace{
margin-top: 45px;
}
div.smallpadding{
margin-top: 10px;
}
div.wrapper{
margin: 30px;
}
a#topbaractive{
background-color: cadetblue;
}
a#topbaractive:hover{
background-color: mediumaquamarine;
}
a#dropdownactive{
background-color: palegoldenrod;
}
a#dropdownactive:hover{
background-color: sandybrown;
}
li.dropdown{
display: inline;
}
.dropdowntail{
display: none;
position: absolute;
background-color: lightgoldenrodyellow;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdowntail a{
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdowntail a:hover{
background-color: sandybrown;
}
.dropdown:hover .dropdowntail{
display: block;
}
li.dropdowntop a{
display: inline-block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li.dropdowntop a:hover, .dropdown:hover {
background-color: mediumaquamarine;
}
table.generictable {
border-collapse: collapse;
}
.generictable td {
border: 1px solid black;
}
.blanktable td{
padding: 15px;
}
.spacedlist li{
margin-bottom: 10px;
}
.unspacedlist li{
margin-bottom: 0px;
}
p.textadventure{
line-height: 0px;
}