-
Notifications
You must be signed in to change notification settings - Fork 0
/
preview.css
48 lines (46 loc) · 875 Bytes
/
preview.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
body { padding-bottom: 60px; font-family: sans-serif; }
#preview-bar {
background-color: rgba(90,90,90,0.5);
color: #222;
position: fixed;
height: 60px;
bottom: 0;
text-align: center;
left: 0;
right: 0;
opacity: 0.5;
}
#preview-bar:hover {
opacity: 1.0;
}
#preview-bar:hover li {
background-color: rgba(90,90,90,0.8);
}
#preview-bar:hover li>a {
color: rgba(255,255,255,0.8);
}
#preview-bar li>a:hover {
color: navy;
}
#preview-bar ul {
list-style-type: none;
float: right;
margin-right: 60px;
}
#preview-bar li {
float: left;
padding: 5px 15px;
}
#preview-bar li:hover {
opacity: 1.0
}
section {
float: left;
min-height: 500px;
margin-top: 30px;
padding-bottom: 30px;
padding-top: 30px;
border-top: 1px #888 solid;
border-bottom: 1px #888 solid;
}
.aside { color: #888; font-weight: normal; font-size: smaller; }