-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (62 loc) · 1.23 KB
/
style.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
body {
background-image: url(https://wallpaper.dog/large/17017853.jpg);
/* font-family: 'Goldman', cursive; */
}
.container {
padding-top: 10px;
margin: auto;
}
#currentWeather {
background-color: rgba(255, 255, 255,.7);
box-shadow: 3px 3px 3px 3px grey;
}
#searchBox {
background-color: rgba(255, 255, 255,.7);
box-shadow: 3px 3px 3px 3px grey;
}
#currentForcast {
margin-left: 0;
}
.btn-primary {
width: 100%;
}
.fiveDayDiv {
padding: 10px;
background-color: rgba(3, 115, 252, .7);
color: #fff;
float: left;
margin: 15px;
width: auto;
border: 1px solid lightgray;
box-shadow: 3px 3px 3px 3px grey;
border-radius: 4%;
}
#city-img {
/* margin-top: auto;
margin-bottom: auto; */
margin: auto;
/* text-align: center; */
/* position: relative; */
}
.loading {
display: none;
text-align: center;
margin-top: 20px;
}
.spinner {
width: 40px;
height: 40px;
margin: 0 auto 10px;
border-radius: 50%;
border: 4px solid rgba(0, 0, 0, 0.1);
border-top-color: #007bff;
animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}