-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwstyle.scss
160 lines (151 loc) · 2.87 KB
/
wstyle.scss
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
148
149
150
151
152
153
154
155
156
157
158
159
160
body {
margin: 0;
padding: 0;
height: 100vh;
overflow-x: hidden;
background: #0097e6;
z-index: -2;
}
@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");
#preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgb(12, 53, 92);
z-index: 3;
}
#loader {
display: block;
position: relative;
left: 50%;
top: 50%;
width: 150px;
height: 150px;
margin: -75px 0 0 -75px;
border-radius: 50%;
border: 3px solid transparent;
border-top-color: #9370db;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
#loader:before {
content: "";
position: absolute;
top: 5px;
left: 5px;
right: 5px;
bottom: 5px;
border-radius: 50%;
border: 3px solid transparent;
border-top-color: #ba55d3;
-webkit-animation: spin 3s linear infinite;
animation: spin 3s linear infinite;
}
#loader:after {
content: "";
position: absolute;
top: 15px;
left: 15px;
right: 15px;
bottom: 15px;
border-radius: 50%;
border: 3px solid transparent;
border-top-color: #ff00ff;
-webkit-animation: spin 1.5s linear infinite;
animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
-ms-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
}
.ct {
min-width: 90%;
}
.txt-fit {
display: flex;
justify-content: center;
align-content: center;
font-size: 40px;
font-family: "Montserrat", sans-serif;
font-weight: 400;
color: white;
flex-direction: column;
padding: 0 80px;
.first {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.sp {
display: flex;
align-items: center;
justify-content: center;
}
.toping {
font-family: "Montserrat", sans-serif;
color: rgba(255, 255, 255, 0.822);
display: flex;
justify-content: center;
}
.w-h,
.w-s,
.w-t {
text-align: center;
font-size: 20px;
}
}
.color-change-2x {
-webkit-animation: color-change-2x 3s linear infinite alternate both;
animation: color-change-2x 3s linear infinite alternate both;
}
@-webkit-keyframes color-change-2x {
0% {
background: #11a1ac;
}
100% {
background: #3c5be4;
}
}
@keyframes color-change-2x {
0% {
background: #11a1ac;
}
100% {
background: #3c5be4;
}
}
@media only screen and (max-width: 768px) {
.w-humidity,
.w-timezone,
.w-windSpeed {
padding: 0;
}
}
@media only screen and (max-width: 350px) {
body {
width: 350px;
}
}