-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
100 lines (92 loc) · 1.72 KB
/
main.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
html, body {
width: 100%;
height: 100%;
margin: 0;
font-family: sans-serif;
}
.main-content {
padding: 50px;
}
.overlay {
width: 100%;
height: 100%;
position: relative;
background-color: rgba(80,128,255,0.4);
z-index: 9999;
overflow-x:hidden;
overflow-y:hidden;
}
.loader,
.loader:after {
border-radius: 50%;
width: 5em;
height: 5em;
}
.loader {
font-size: 10px;
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
text-indent: -9999em;
border-top: 1.1em solid rgba(203,108,0, 0.2);
border-right: 1.1em solid rgba(203,108,0, 0.2);
border-bottom: 1.1em solid rgba(203,108,0, 0.2);
border-left: 1.1em solid #cb6c00;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation: load8 1.1s infinite linear;
animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes load8 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.business {
margin-top: 20px;
margin-bottom: 5px;
border: 2px solid #BBB;
border-radius: 6px;
display: flow-root;
}
.row {
float: left;
margin: 5px;
padding: 5px;
background-color: #EEE;
}
.title {
font-weight: bold;
}
.description {
font-family: georgia;
}
.result-info-matches {
font-size: 3em;
font-weight: bold;
background: #57a9ff;
border-radius: 50%;
width: 60px;
height: 60px;
text-align: center;
color: white;
position: absolute;
top: 140px;
left: 270px;
}