forked from investdice/investdice.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhitebgstyle.css
80 lines (67 loc) · 1.67 KB
/
whitebgstyle.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
body {
margin-top: 20px;
}
.navbar .navbar-brand {
color: #777777;
}
.navbar .brand-name:hover {
text-decoration: underline;
}
/* ChatBox */
.chat-list {
overflow-y: scroll;
height: 215px;
word-wrap: break-word;
}
.chat-list li {
/* Since .focus() is used to scroll to last message item,
turn off the outline that appears by default */
outline: none;
}
/* Animation */
.rotate {
display: inline-block;
-webkit-animation-name: rotate;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: rotate;
-moz-animation-duration: 2s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-o-animation-name: rotate;
-o-animation-duration: 2s;
-o-animation-iteration-count: infinite;
-o-animation-timing-function: linear;
animation-name: rotate;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@-webkit-keyframes rotate {
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes rotate {
from {-moz-transform: rotate(0deg);}
to {-moz-transform: rotate(360deg);}
}
@-o-keyframes rotate {
from {-moz-transform: rotate(0deg);}
to {-moz-transform: rotate(360deg);}
}
@keyframes rotate {
from {transform: rotate(0deg);}
to {transform: rotate(360deg);}
}
/* Bootstrap overrides */
/* Turn off redundant text-shadow */
.btn kbd,
.btn .label {
text-shadow: none;
}
/* Progress Bar */
.progress-bar-grey {
background-color: #767676;
background-image: none;
}