-
Notifications
You must be signed in to change notification settings - Fork 13
/
style.css
69 lines (56 loc) · 826 Bytes
/
style.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
body {
margin: 0;
}
a {
color: #333;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul {
list-style: none;
padding-left: 20px;
}
li {
line-height: 20px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.folder {
padding-left: 20px;
background: url(images/folder.png) no-repeat center left;
}
.folder.open {
background-image: url(images/folder-open.png);
}
.folder + ul {
display: none;
}
.folder.open + ul {
display: block;
}
ul img {
width: 16px;
height: 16px;
margin-right: 4px;
vertical-align: text-bottom;
}
#website input {
width: 30px;
padding: 3px;
}
#q {
width: calc(100% - 90px) !important;
}
iframe {
border: 0;
width: 100%;
height: calc(100vh - 95px);
}
.footer {
color: #aaa;
font-size: 80%;
text-align: center;
}