-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
63 lines (52 loc) · 858 Bytes
/
index.css
File metadata and controls
63 lines (52 loc) · 858 Bytes
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
* {
margin: 0;
padding: 0;
}
body {
padding: 10px;
}
.container-fluid {
margin: 10px;
}
.fl {
position: relative;
float: left;
}
.fr {
position: relative;
float: right;
}
.form-input {
border-top: 0;
border-left: 0;
border-right: 0;
border-radius: 0;
border-bottom: 1px solid #333;
}
#svcTitle {
position: relative;
float: left;
}
#gotoUrl {
position: relative;
float: right;
}
footer {
position: absolute;
width: 100%;
bottom: 0;
line-height: 24px;
text-align: center;
}
.glyphicon-refresh-animate {
-animation: spin .7s infinite linear;
-webkit-animation: spin2 .7s infinite linear;
}
@-webkit-keyframes spin2 {
from { -webkit-transform: rotate(0deg);}
to { -webkit-transform: rotate(360deg);}
}
@keyframes spin {
from { transform: scale(1) rotate(0deg);}
to { transform: scale(1) rotate(360deg);}
}