-
Notifications
You must be signed in to change notification settings - Fork 0
/
panel.css
90 lines (78 loc) · 1.66 KB
/
panel.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
html, body, .menu {
/*height: 100%;*/
}
body {
background: rgb(121,121,121);
}
.menu {
/* OVERRIDES */
padding: 0;
margin: 0;
/* END OVERRIDES */
position:absolute;
left:0;
top:0;
max-width: 400px;
cursor: default;
-webkit-user-select: none;
font-family: 'Lucida Grande', sans-serif;
font-weight: bold;
font-size: 12px;
/*text-shadow: 0 -1px 0 gray;*/
padding-right: 5px;
box-sizing: border-box;
width: 100%;
list-style: none;
/*box-shadow: inset 2px 0 5px 0 rgb(100,100,100);*/
}
.menu li {
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
text-align: center;
box-sizing: border-box;
width: 100%;
height: 22px;
line-height: 22px;
background: rgb(157,157,157);
margin: 4px 0;
box-shadow: 0 0 3px 0 rgb(50,50,50);/*, inset 2px 0 5px 0 rgb(100,100,100);*/
}
.menu li:hover {
background: rgb(165,165,165);
}
.menu .active {
background: rgb(179,179,179);
box-shadow: 0 0 3px 0 rgb(0,0,0);
}
.title {
box-sizing: border-box;
/* both white-space and overflow:hidden; are necessary for text-overflow*/
/* text-overflow is not triggered by line-break overflow, so white-space:nowrap is necessary*/
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding-right: 6px; /*matches .times margin-left*/
}
.favicon {
float:left;
margin: 0 8px;
}
.favicon img {
padding-top: 3px;
height: 16px;
width: auto;
}
.times {
font-family: sans-serif;
font-size: 14px;
float:right;
margin-right: 12px;
margin-left: 6px;
color: rgb(65,65,65);
}
.times:hover {
color: white;
/*background: rgb(120,120,120);*/
text-shadow: 0 0 10px black;
/*text-shadow: 0 0 2px black;*/
}