-
Notifications
You must be signed in to change notification settings - Fork 884
Expand file tree
/
Copy pathcustom.css
More file actions
64 lines (54 loc) · 1.1 KB
/
custom.css
File metadata and controls
64 lines (54 loc) · 1.1 KB
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
.padding-fifty {
padding-top: 50px;
}
.padding-twenty {
padding-top: 20px;
}
.display-none {
display: none;
}
.list-group-item {
word-break: break-all;
}
.list-group-item.selected {
background: #dff0d8 !important;
color: #3c763d !important;
font-weight: bold;
}
#snackbar {
visibility: hidden;
min-width: 250px;
margin-left: -125px;
background-color: #5cb85c;
color: #fff;
text-align: center;
border-radius: 2px;
padding: 16px;
position: fixed;
z-index: 1;
left: 50%;
bottom: 30px;
font-size: 17px;
}
#snackbar.show {
visibility: visible;
-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@-webkit-keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
from {bottom: 30px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}
textarea.form-control#query {
resize: vertical;
min-height: 100px;
font-family: monospace;
}