-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
109 lines (101 loc) · 2.26 KB
/
styles.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
h1 {
color: #369;
font-family: Arial, Helvetica, sans-serif;
font-size: 250%;
}
body {
margin-top: 1em;
}
body,html{
height: 100%;
max-height: 100%;
width:100%;
}
img{
max-height: 5em;
max-width: 100%;
}
#dropup-menu{
min-width: 0px !important;
}
textarea{
resize : none;
}
.pseudo>p{
display:inline-block;
}
.message{
line-height: 1em;
}
.btn-sample {
color: #ffffff;
background-color: #31366B;
border-color: #375a7f;
}
.btn-sample:hover,
.btn-sample:focus,
.btn-sample:active,
.btn-sample.active,
.open .dropdown-toggle.btn-sample {
color: #ffffff;
background-color: #2E247A;
border-color: #375a7f;
}
.btn-sample:active,
.btn-sample.active,
.open .dropdown-toggle.btn-sample {
background-image: none;
}
.btn-sample.disabled,
.btn-sample[disabled],
fieldset[disabled] .btn-sample,
.btn-sample.disabled:hover,
.btn-sample[disabled]:hover,
fieldset[disabled] .btn-sample:hover,
.btn-sample.disabled:focus,
.btn-sample[disabled]:focus,
fieldset[disabled] .btn-sample:focus,
.btn-sample.disabled:active,
.btn-sample[disabled]:active,
fieldset[disabled] .btn-sample:active,
.btn-sample.disabled.active,
.btn-sample[disabled].active,
fieldset[disabled] .btn-sample.active {
background-color: #31366B;
border-color: #375a7f;
}
.btn-sample .badge {
color: #31366B;
background-color: #ffffff;
}
#awesome-dots{
position:relative;
margin: 0 auto;
top: 300px;
width: 100px;
height: 30px;
background: radial-gradient(circle at 15px 10px , #FFFFFF 3px, rgba(0, 0, 0, 0) 4px), radial-gradient(circle at 40px 10px , #FFFFFF 3px, rgba(0, 0, 0, 0) 4px), radial-gradient(circle at 65px 10px , #FFFFFF 3px, rgba(0, 0, 0, 0) 4px), radial-gradient(circle at 90px 10px , #FFFFFF 3px, rgba(0, 0, 0, 0) 4px);
animation: load 3s 400ms linear infinite;
}
@keyframes load{
0% {
opacity: 0;
transform: translateX(-300px);
}
33% {
opacity: 0.8;
transform: translateX(-100px);
}
50%{
opacity: 1;
transform: translateX(0px);
}
66% {
opacity: 0.8;
tranform: translateX(100px);
}
100% {
opacity: 0;
transform: translateX(300px);
}
}