-
Notifications
You must be signed in to change notification settings - Fork 0
/
weather.css
127 lines (120 loc) · 1.73 KB
/
weather.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
body {
background-color: rgb(197, 187, 187);
}
.main-container {
background-color: white;
width: 650px;
height: auto;
display: block;
margin: 2rem auto;
padding: 1rem;
border-radius: 20px;
}
header {
display: flex;
align-items: center;
font-weight: bold;
font-size: 25px;
}
header a {
text-decoration: none;
color: #8064e9;
cursor: pointer;
}
img {
width: 50px;
height: auto;
border-radius: 50%;
margin: 1rem;
}
.search {
margin: 0.5rem;
}
.search input {
width: 70%;
height: 20px;
padding: 0.9rem;
border-radius: 5px;
background-color: #f9f7fe;
color: black;
border: none;
}
.search input:active,
.search input:focus{
outline: 2px solid rgb(83, 83, 231);
}
hr{
margin: 1rem;
color: #8064e9;
}
.search button {
background-color: #8064e9;
padding: 0.5rem;
border: 2px solid #8064e9;
color: white;
width: 120px;
border-radius: 5px;
margin: 0.5rem;
cursor: pointer;
}
.info-container {
display: flex;
justify-content: space-between;
}
.info-container h2 {
font-size: 45px;
}
.info-container h2:nth-child(2) {
font-size: 85px;
margin: auto 0;
}
.info p {
color: gray;
}
.main-temp {
font-size: 100px;
}
.numbers {
color: red;
}
.days {
display: flex;
justify-content: space-around;
margin: 0.5rem;
}
.day {
font-size: 20px;
color: gray;
}
.emoji {
font-size: 40px;
}
.first-temp {
color: red;
font-size: 20px;
font-weight: bold;
}
.second-temp {
color: rgba(255, 0, 0, 0.404);
}
footer {
margin: 1rem;
text-align: center;
color: gray;
font-size: 17px;
}
footer a {
color: #8064e9;
}
.day-info img {
width: 100px;
}
.day-info {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.emoji {
}