-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
175 lines (150 loc) · 3.17 KB
/
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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
* {
outline: none;
}
body {
background-color: #3c3c3c;
color: #fff;
font-family: "PT Sans", sans-serif;
border: 0;
padding: 0;
margin: 0;
max-height: 100%;
height: 100%;
}
a {
color: #fff;
text-decoration: none;
}
a:hover {
color: #ff6c00;
}
#navigation {
background-color: #4f5a79;
width: 410px;
border-right: #6d80b5 solid 2px;
float:left;
height:auto;
}
#navigation-inner {
float:left;
padding: 0px 20px;
height: 100%;
width: 376px;
}
#navigation #logo {
background-image: url("logo.png");
height:96px;
width:270px;
margin: 20px auto 15px auto;
}
#navigation #navlist-outer {
height:auto;
}
#navigation #navlist {
overflow-y: scroll;
max-height: calc(100% - 218px);
margin-top: 15px;
}
#navigation ul {
list-style: none;
padding:8px 8px 8px 15px;
margin:0;
}
#navigation li {
list-style: none;
}
#navigation input {
width: 341px;
padding: 10px;
border: #464646 solid 1px;
border-width: 1px 0px 1px 1px;
border-radius: 5px 0px 0px 5px;
margin: 0px 0px -5px 0px;
box-shadow: 0px 0px 0px 1px #6e7792 inset;
}
#navigation input:focus {
outline: none;
}
#navigation #filter {
width: 35px;
height: 35px;
background-color: #fff;
background-image: url(assets/filter.svg);
background-repeat: no-repeat;
background-position: 4px 4px;
margin: 0px 0px 0px 0px;
display: block;
float: right;
position: relative;
right: 0px;
top: 37px;
border: #464646 solid 1px;
border-width: 1px 1px 1px 0px;
border-radius: 0px 5px 5px 0px;
box-shadow: -1px 0px 0px 0px #6e7792 inset, -1px 1px 0px 0px #6e7792 inset, -1px -1px 0px 0px #6e7792 inset;
cursor: pointer;
}
#navigation #filterlist {
display: none;
padding-top: 10px;
width: 374px;
background-color:#fff;
color: #000;
position: absolute;
border: #464646 solid 1px;
border-width: 0px 1px 1px 1px;
border-radius: 0px 0px 5px 5px;
box-shadow: 1px -1px 0px 0px #6e7792 inset, -1px -1px 0px 0px #6e7792 inset, -1px -1px 0px 0px #6e7792 inset;
}
#filterlist li {
height: 28px;
}
#filterlist select {
width: 220px;
float: right;
height: 24px;
margin: -5px 5px 0px 0px;
}
#main {
background-color: #3c3c3c;
padding: 20px 20px 20px 432px;
}
#main ul{
}
#main li{
}
#main h2{
}
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-button {
width: 0px;
height: 0px;
}
::-webkit-scrollbar-thumb {
background: #e1e1e1;
border: 0px none #ffffff;
border-radius: 50px;
}
::-webkit-scrollbar-thumb:hover {
background: #ffffff;
}
::-webkit-scrollbar-thumb:active {
background: #d9d9d9;
}
::-webkit-scrollbar-track {
background: #4f5a79;
border: 0px none #ffffff;
border-radius: 50px;
}
::-webkit-scrollbar-track:hover {
background: #8c8c8c;
}
::-webkit-scrollbar-track:active {
background: #212b45;
}
::-webkit-scrollbar-corner {
background: transparent;
}