-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathcss.css
More file actions
147 lines (123 loc) · 2.5 KB
/
css.css
File metadata and controls
147 lines (123 loc) · 2.5 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
body {
padding-top: 5rem;
}
/* See https://css-tricks.com/hash-tag-links-padding/ */
#index-page h4 {
z-index: -100;
}
#index-page h4::before {
z-index: -100;
display: block;
content: " ";
margin-top: -4rem;
height: 4rem;
visibility: hidden;
pointer-events: none;
}
.jumbotron {
background: #000 !important;
padding-top: 0 !important;
padding-bottom: 0 !important;
padding-left: 30px !important;
padding-right: 30px !important;
margin: 0 !important;
color: white;
}
.jumbotron p {
margin-top: 1em;
font-size: 1.45em;
}
.btn-docu {
background-color: #00BAA1;
color:#FFF;
border-color: #121517;
}
.btn-docu:hover, .btn-docu:focus, .btn-docu:active, .btn-docu.active, .open .dropdown-toggle.btn-docu {
background-color: #02d6ba;
color:#FFF;
border-color: #050607;
}
hr.styled {
overflow: visible; /* For IE */
padding: 0;
border: none;
border-top: medium double 0;
color: #000;
text-align: center;
}
hr.styled:after {
content: "§";
display: inline-block;
position: relative;
top: -0.7em;
font-size: 1.5em;
padding: 0 0.25em;
background: white;
}
.feedback, .hidden {display: none;}
span.feedback {margin-left:2em;}
form.eg {max-width: 30em;}
form.eg label {font-weight: 550;}
pre.json-display {
background-color: ghostwhite;
border: 1px solid silver;
padding: 10px 20px;
}
.json-key {
color: brown;
}
.json-value {
color: navy;
}
.json-string {
color: olive;
}
/* From http://tobiasahlin.com/spinkit/ */
.spinner {
margin: 100px auto;
width: 150px;
height: 140px;
text-align: center;
font-size: 10px;
}
.spinner > div {
background-color: blueviolet;
height: 100%;
width: 6px;
display: inline-block;
-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
-webkit-animation-delay: -1.1s;
animation-delay: -1.1s;
}
.spinner .rect3 {
-webkit-animation-delay: -1.0s;
animation-delay: -1.0s;
}
.spinner .rect4 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}
.spinner .rect5 {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}
@-webkit-keyframes sk-stretchdelay {
0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
20% { -webkit-transform: scaleY(1.0) }
}
@keyframes sk-stretchdelay {
0%, 40%, 100% {
transform: scaleY(0.4);
-webkit-transform: scaleY(0.4);
} 20% {
transform: scaleY(1.0);
-webkit-transform: scaleY(1.0);
}
}
.your-class div{
float:left;
margin-left: 10px;
}