-
Notifications
You must be signed in to change notification settings - Fork 2
/
example_list.css
62 lines (54 loc) · 990 Bytes
/
example_list.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
div {
display: block;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
a {
color: #08c;
text-decoration: none;
}
.example {
height: 140px;
padding: 3px;
background-color: #eee;
border-radius: 3px;
margin-bottom: 10px;
overflow: auto;
width: 370px;
float: left;
min-height: 1px;
margin-left: 20px
}
.example div {
color: #666;
}
.example:hover {
background-color: #ddd;
}
.navbar-search.pull-left {
padding: 5px;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-button {
width: 0;
height: 0;
display: none;
}
::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.2);
-webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.10),inset 0 -1px 0 rgba(0, 0, 0, 0.07);
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(0, 0, 0, 0.4);
}
::-webkit-scrollbar-corner {
background-color: transparent;
}
.container {
margin-right: auto;
margin-left: auto;
color: #555;
width: auto;
padding: 5px;
}