-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (45 loc) · 942 Bytes
/
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
.weather-icon {
width: 40%;
height: 40%;
margin: 10px;
margin-left: 50px;
border: 1px solid black;
border-radius: 100px;
box-shadow: 0px 0px 10px 3px rgb(255, 205, 41);
}
.search-input {
border: 1px solid rgb(0, 123, 255);
font-size: 1.3rem;
text-align: center;
}
.search-button {
font-size: 1.2rem;
}
.cards {
box-shadow: 4px 3px 20px 3px rgba(198, 244, 247, 0.75);
-webkit-box-shadow: 4px 3px 20px 3px rgba(198, 244, 247, 0.75);
-moz-box-shadow: 4px 3px 20px 3px rgba(198, 244, 247, 0.75);
}
@media screen and (max-width: 768px) {
.navbar {
margin-top: 40px;
}
.icon-text {
margin-top: 20px;
font-size: 50px;
}
.weather-icon {
margin-top: 30px;
}
.website-title {
font-size: 200%;
}
}
@media screen and (max-width: 168px) {
.website-title {
font-size: 100%;
}
.weather-icon {
width: 20px;
}
}