-
Notifications
You must be signed in to change notification settings - Fork 2
/
bar.css
75 lines (71 loc) · 1.11 KB
/
bar.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
@charset "utf-8";
body {
margin-bottom: 5px;
}
.sai-de-bar {
background: #eee;
display: block;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 5px;
font-size: 10px;
z-index: 10000;
transition: 0.6s height ease;
}
.sai-de-bar:hover ,
.sai-de-bar:focus {
height: 150px;
overflow: auto;
outline: 0;
}
.sai-de-status-bar {
position: absolute;
top: 0;
left: 0;
width: 100%;
cursor: pointer;
z-index: 10002;
}
.sai-de-status-bar > span {
position: fixed;
display: inline-block;
float: left;
height: 3px;
}
.sai-de-status-bar:hover > span {
height: 5px
}
.sai-de-status-bar-error {
background-color: #f60;
}
.sai-de-status-bar-warn {
background-color: #fc0;
}
.sai-de-status-bar-info {
background-color: #ccc;
}
.sai-de-console {
position: relative;
left: 0;
top: 5px;
width: 100%;
z-index: 10001;
}
.sai-de-console > div {
padding: 4px 10px;
border-bottom: 1px solid #ddd;
}
.sai-de-console > div:last-child {
border-bottom-width: 0;
}
.sai-de-console-error {
color: #f30;
}
.sai-de-console-warn {
color: #f80;
}
.sai-de-console-info {
color: #333;
}