-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (105 loc) · 2.02 KB
/
style.css
File metadata and controls
128 lines (105 loc) · 2.02 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
*{
box-sizing: border-box;
padding: 0;
margin: 0;
}
body{
/* background: url('https://source.unsplash.com/1600x900/?landscape'); */
background-position: center;
background-repeat: no-repeat;
background-size: auto;
}
.container{
display: flex;
flex-wrap: wrap;
justify-content:center;
align-items: center;
/* height: 100vh; */
/* width: auto; */
margin: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 120%;
/* border: 3px solid black; */
}
.card-container{
/* background: burlywood; */
/* border: 5px solid green; */
flex: 1 1 400px;
padding: 30px;
margin: auto;
}
.card{
background: #232323;
color: #fff;
padding: 2em;
border-radius: 30px;
width: 100%;
max-width: 420px;
margin: auto;
opacity: 0.8;
}
h2.city {
padding: 0.5em 0em;
}
.date-container{
flex: 1 1 400px;
padding: 30px;
margin: auto;
}
.search{
display: flex;
align-items: center;
justify-content: center;
}
button {
margin: 0.7em;
border-radius: 50%;
border: none;
height: 2.5em;
width: 2.5em;
outline: none;
background: #7c7c7c57;
color: white;
cursor: pointer;
transition: 0.2s ease-in-out;
}
input.search-bar {
border: none;
outline: none;
padding: 0.5em 0.5em;
border-radius: 24px;
height: 2.5em;
width: 20em;
background: #7c7c7c57;
font-size: 110%;
width: calc(100% - 100px);
color: #fff;
}
button:hover{
background: #7c7c7ca1;
}
h1.temp{
margin: 0;
margin-bottom: 0.2em;
}
.flex{
display: flex;
align-items: center;
}
.description{
text-transform: capitalize;
margin-left: 8px;
}
.weather .loading{
visibility: hidden;
max-height: 20px;
position: relative;
}
.weather .loading::after{
visibility: visible;
content: "Loading...";
color: #fff;
position: relative;
top: 0;
left: 20px;
}