-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (73 loc) · 1.39 KB
/
style.css
File metadata and controls
78 lines (73 loc) · 1.39 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
body{
height: 100vh;
display: grid;
align-items: center;
justify-items: center;
}
.mainContainer{
display: grid;
grid-template-columns: auto auto;
}
h1{
grid-column: 1/3;
}
button{
background-color: transparent;
border: none;
}
input{
border-top: none;
border-left: none;
border-right: none;
border-color: rebeccapurple;
}
input:active{
outline: none;
border-top: none;
border-left: none;
border-right: none;
}
input:focus{
outline: none;
border-top: none;
border-left: none;
border-right: solid 1px rebeccapurple;
border-bottom: solid 4px rebeccapurple;
border-radius: 10px;
}
.loader {
margin: auto;
border: 5px solid #EAF0F6;
border-radius: 50%;
border-top: 5px solid #4a714a;
width: 100px;
height: 100px;
animation: spinner 4s linear infinite;
}
@keyframes spinner {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.mainContainer>.secondaryBox{
background-color: bisque;
padding: 30px 60px;
}
.cityWeather{
display: grid;
background-color: bisque;
grid-template-columns: 1fr 1fr;
grid-template-areas: "a b"
"a c"
"a d";
}
.iconBox{
grid-area: a;
display: grid;
justify-items: center;
}
.mainContainer>h1{
color: rebeccapurple;
}
.mainContainer>button{
color: rebeccapurple;
}