-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
101 lines (86 loc) · 1.61 KB
/
style.css
File metadata and controls
101 lines (86 loc) · 1.61 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
@import url("https://fonts.googleeapis.com/css2?family=Poppins&display=swap");
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family: "Poppins",sans-serif;
}
body{
background: #1e1e1e;
color:#171717;
text-align: center;
}
.container{
background-color: #fff;
color:#171717;
padding:2rem;
width:40%;
margin:4rem auto;
border-radius:10px ;
}
.weather_header{
display:flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1.2rem;
}
.weather_body div{
margin-bottom: 1.2rem;
}
input{
border:none;
background:#1e1e1e;
color:#fff;
outline:none;
padding:0.5rem 2.5rem;
border-radius: 5px;
box-sizing: rgba(100,100,111,0.2)0px 7px 29px 0px;
}
input::placeholder{
color:#f7f7f7;
}
.weather_search{
position:relative;
}
.weather_search i{
position:absolute;
left:10px;
top:10px;
font-size:15px;
color:#fff;
}
.weather_units{
font-size: 1.5rem;
}
.weather_temperature{
font-size:1.75rem;
}
.weather_minmax{
display:flex;
justify-content: center;
}
.weather_minmax p{
font-size: 14px;
margin:0.5rem;
}
.weather_info{
display:grid;
grid-template-columns: repeat(2,1.5fr);
}
.weather_card{
display:grid;
grid-template-columns:repeat(2,35px);
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
margin:0.5rem;
padding:0.7rem;
border-radius: 1rem;
}
.weather_card i{
font-size: 1.5rem;
margin-right: 1rem;
}
.weather_card p{
font-size: 14px;
/* margin-right: 1.5rem; */
/* margin-left:-100rem ; */
}