-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
143 lines (133 loc) · 2.27 KB
/
styles.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
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
*{
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
box-sizing: border-box;
}
body{
background: #222;
}
.card{
width: 90%;
max-width: 525px;
height: 90%;
max-height: 515px;
background: linear-gradient(135deg, #00feba , #5b548a);
color: #fff;
margin: 100px auto;
border-radius: 20px;
padding: 30px 25px;
text-align: center;
}
.search{
width: 465px;
display: flex;
align-items: center;
justify-content: space-between;
margin-left: 5px;
}
.search input{
border: 0;
outline: 0;
background: whitesmoke;
color: grey;
padding: 10px 15px;
height: 45px;
border-radius: 80px;
flex: 1;
margin-right: 10px;
font-size: 18px;
}
.search button{
border: 0;
outline: 0;
background: whitesmoke;
border-radius: 50%;
width: 45px;
height: 45px;
cursor: pointer;
}
.search img{
height: 60%;
}
.tiempo{
width: 100%;
height: 50%;
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
margin-top: 30px;
}
.weather{
width: 100%;
height: 60;
}
.weather-icon{
font-size: 60px;
font-weight: 500;
width: 90px;
height: 90px;
margin-bottom: 5px;
}
.weather h1{
font-size: 35px;
font-weight: 500;
}
.weather h2{
font-size: 30px;
font-weight: 500;
}
.details, .col-viento{
width: 49%;
display: flex;
align-items: center;
justify-content: start;
padding: 0px 7px;
margin-top: 28px;
}
.col-viento img, .details img{
width: 25px;
height: 25px;
}
.col-viento img{
margin-left: 54px;
}
.humidity{
font-size: 21px;
margin-left: 8px;
text-align: left;
}
.humedad{
font-size: 15px;
margin-left: 5px;
}
.wind{
font-size: 20px;
margin-left: 8px;
text-align: right;
}
.velocidad{
font-size: 15px;
margin-left: 5px;
}
.days{
width: 100%;
height: 40%;
margin-top: 30px;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-around;
}
.day_one, .day_two, .day_three, .day_four{
width: 25%;
}
.day_one img, .day_two img, .day_three img, .day_four img{
width: 45px;
height: 45px;
margin: 8px 0px;
}
.p1{
font-size: 18px;
}