-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
120 lines (102 loc) · 2.03 KB
/
main.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
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Unbounded:[email protected]&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Unbounded;
font-size: 34.5px;
line-height: auto;
color: #000000;
}
.header {
height: 459.76px;
background: linear-gradient(to right, #65D0E8, #BAE5EF);
display: flex;
align-items: center;
justify-content: space-between;
}
button {
cursor: pointer;
}
.header__cloudy {
margin: 206px 100px 77px 68px ;
}
.header__cloudy__sun {
margin: 73px 83px 222px 100px ;
}
.title {
font-size: 72px;
margin: 0 147px 48px 147px;
}
.input__group {
display: flex;
align-items: center;
width: 203px;
margin-bottom: 16px;
}
.latitude {
margin-right: 12px;
}
.longitude {
margin-right: 8px;
}
.search__input {
flex-grow: 1;
padding: 8px;
border-radius: 7px;
background-color: rgba(224, 255, 255, 0.2);
border: none;
}
.input__group input {
outline: none;
}
.search__button {
color: #ffffff;
background-color: #0080FF;
border: none;
border-radius: 7px;
width: 660px;
margin-left: 15px;
}
.card {
height: auto;
box-shadow: 0px 5px 20px #6097A2;
margin: 108px 84px;
display: flex;
align-items: center;
flex-direction: column;
gap: 52px;
}
.card__info {
display: flex;
justify-content: space-between;
align-items: center;
margin: 89px 43px 10px 74px;
width: 100%;
}
.card__important_info {
display: flex;
flex-direction: column;
margin-left: 74px;
}
.card__weather {
margin-right: 112px;
}
.degrees {
font-size: 120px;
}
#map {
width: 100%;
height: 500px;
padding: 0px 50px;
}
.del__button {
color: #ffffff;
background-color: #0080FF;
border: none;
border-radius: 7px;
width: 660px;
display: block;
margin: 0 auto;
margin-bottom: 40px;
}