-
Notifications
You must be signed in to change notification settings - Fork 1
/
dashboard.css
56 lines (55 loc) · 976 Bytes
/
dashboard.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
.db-body {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(0, 0, 0, .75);
}
.db-menu {
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 65px;
padding: 10px 10px;
box-sizing: border-box;
background-color: rgba(0, 0, 0, .65);
}
.db-elements {
position: absolute;
left: 70px;
top: 5px;
bottom: 5px;
right: 5px;
padding: 0;
margin: 0;
box-sizing: border-box;
}
.db-menu-item {
color: #bbb;
background-color: transparent;
border-color: transparent;
width: 40px;
padding: 6px 2px;
margin-bottom: 10px;
}
.db-menu-item:hover,
.db-menu-item:focus {
border-color: transparent;
background-color: transparent;
color: #fff;
}
.db-elements ul {
list-style: none;
padding: 0;
margin: 0;
}
.db-widget {
background-color: #eee;
box-shadow: 0 0 2px #666;
}
.db-widget img {
width: 100%;
height: 100%;
}