-
Notifications
You must be signed in to change notification settings - Fork 1
/
browser.css
110 lines (98 loc) · 1.78 KB
/
browser.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
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
* {
font-family: 'Roboto Condensed Light';
}
.wrapper {
width: 500px;
margin: 150px auto;
background: rgba(0,0,0,.7);
max-height: 600px;
}
.header {
background: #ffcc00;
text-align: center;
margin-bottom: 0;
position: relative;
padding: 5px;
}
.brand {
font-size: 22px;
padding: 10px;
margin: 0;
display: inline;
}
.accordion {
background-color: rgba(0,0,0, .6);
}
.accordion:nth-child(even) {
background-color: rgba(0,0,0, .2) !important;
}
.accordion-header {
color: #f3f3f3;
padding: 10px;
}
.accordion-body {
max-height: 420px;
overflow: auto;
}
.accordion-body > ul {
padding: 0;
margin: 0;
}
.accordion-body > ul > li {
padding-left: 10px;
list-style: none;
background: rgba(30, 30, 30, .7);
padding: 6px;
color: #f3f3f3;
}
.accordion-body > ul > li:nth-child(even) {
background: rgba(50, 50, 50, .8);
}
.btn-expand {
background: #ffcc00;
border-radius: 2px;
border: none;
font-size: 12px;
font-weight: bolder;
padding: 5px;
float: right;
}
.btn-enter {
background: #22aa22;
color: #f3f3f3;
border-radius: 2px;
border: none;
font-size: 12px;
font-weight: bold;
padding: 5px;
margin-right: 5px;
float: right;
}
.btn-close {
color: #000;
font-size: 12px;
background: transparent;
font-weight: bolder;
border: none;
display: inline;
position: absolute;
text-transform: uppercase;
top: 10px;
right: 5px;
}
/* width */
::-webkit-scrollbar {
width: 5px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #777;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #999;
}