-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (107 loc) · 2.08 KB
/
style.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
* {
color: rgb(7, 1, 1);
font-style: bold;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-image: url('wea.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
margin: 0;
padding: 0;
opacity: 70%;
}
#cityInput, #cityName, #inputContainer, button {
margin: 3px;
border-radius: 17px;
padding: 5px;
text-align: center;
font-size: 20px;
font-weight: bold;
}
#weatherContainer {
position: absolute;
top: 70%;
left: 50%;
background-color: rgba(203, 248, 248, 0.555);
margin-right: -50%;
transform: translate(-50%, -50%);
height: 300px;
width: 1300px;
border: 0.1px solid rgba(97, 95, 95, 0.829);
border-radius: 10px;
}
#iconsContainer {
position: absolute;
top: 50%;
left: 50%;
display: flex;
margin-right: -50%;
transform: translate(-50%, -50%);
height: 240px;
width:1350px;
align-items: center;
justify-content: center;
border-radius: 10px;
}
.image{
height: 140px;
width: 100%;
}
.imgClass{
height: 140px;
width: 100%;
}
.icons {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
filter: brightness(200);
height: 200px;
width: 200px;
margin: 20px;
border: 0.1px solid rgb(0, 0, 0);
border-radius: 10px;
}
.weather {
margin: 5px;
border-radius: 5px;
text-align: center;
color: #000;
font-weight: 800;
font-weight: bold;
flex-grow: 1;
}
.minValues, .maxValues {
text-align: center;
display:contents;
border-radius: 1px;
height: 25px;
font-weight: 750;
color: #000;
width: 100px;
margin: 0;
margin-bottom: 5px;
margin-left: 5px;
}
@media (max-width: 1366px) {
#weatherContainer {
width: 90%;
}
}
@media (max-width: 1440px) {
#iconsContainer {
width: 95%;
}
}
@media (max-width: 768px) {
#weatherContainer {
width: 90%;
top: 60%;
}
#iconsContainer {
width: 95%;
}
}