blob: 0bd8889400508f16c3956f29558dbfee2683f6b8 (
plain)
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
|
/* List of lists */
#logo {
display: block;
margin: 120px auto;
clear: both;
}
h1.lists {
margin-bottom: 0.5em;
}
.all-lists .list-name {
font-size: 120%;
color: black;
font-weight: bold;
}
.all-lists .list-address {
font-size: 90%;
font-style: italic;
}
.all-lists a {
display: block;
padding: 2em;
margin: 1em auto;
overflow: hidden;
border: 1px solid #ccc;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
color: black;
}
.all-lists a:hover {
text-decoration: none;
background-color: #eee;
color: black;
}
|