forked from loveky/which_host
-
Notifications
You must be signed in to change notification settings - Fork 1
/
which_host.css
58 lines (49 loc) · 1.01 KB
/
which_host.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
#which-host-container {
-webkit-user-select: none;
user-select: none;
position: fixed;
bottom: 0;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;;
z-index: 10000;
}
#which-host-container.right {
right: 0;
text-align: right;
}
#which-host-container.left {
left: 0;
text-align: left;
}
#which-host-container .item {
margin-top: 3px;
height: 19px;
}
#which-host-container .item:first-child {
margin-top: 0;
}
#which-host-container .hostname, .ip {
display: inline;
padding: .2em .6em .3em;
font-size: 75%;
font-weight: 700;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em;
}
#which-host-container .hostname {
background: #337ab7;
margin-right: 5px;
}
#which-host-container .ip {
background: #5cb85c;
margin-right: 2px;
}
#which-host-container .internal {
background: #f0ad4e;
}
#which-host-container .cache {
background: #d9534f;
}