-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
108 lines (93 loc) · 2.15 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
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2&display=swap');
* {
margin: 0;
padding: 0;
}
body {
/* background-color: rgb(201, 167, 232); */
background: url(bg.jpg);
display: flex;
justify-content: center;
}
.container {
/* background-color: rgb(189, 251, 251); */
background: rgba(47, 164, 178, 0.21);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(8.5px);
-webkit-backdrop-filter: blur(8.5px);
border: 1px solid rgba(47, 164, 178, 1);
display: flex;
flex-direction: column;
width: 330px;
height: 450px;
align-items: center;
margin-top: 15vh;
border: 3px solid black;
border-radius: 15px;
padding-top: 25px;
}
.app-tittle p {
font-size: 40px;
font-weight: bolder;
font-family: 'Baloo Bhai 2', cursive;
}
.weather-icons img {
width: 170px;
}
.temperature-value p {
cursor: pointer;
text-align: center;
font-size: 60px;
font-weight: bolder;
font-family: 'Baloo Bhai 2', cursive;
margin: -15px;
}
.temperature-value p span {
font-size: 40px;
}
.temperature-description p {
text-align: center;
font-size: 40px;
font-weight: bolder;
font-family: 'Baloo Bhai 2', cursive;
margin: -15px;
}
.location p {
text-align: center;
font-size: 35px;
font-weight: bolder;
font-family: 'Baloo Bhai 2', cursive;
}
.notification {
background-color: rgb(212, 65, 65);
color: white;
border-radius: 5px;
text-align: center;
font-size: 25px;
font-weight: bolder;
font-family: 'Baloo Bhai 2', cursive;
margin: -15px;
}
.notification p {
padding: 2px 10px;
}
.maxtemp-value p {
text-align: center;
font-size: 30px;
font-weight: bolder;
font-family: 'Baloo Bhai 2', cursive;
margin-top: 10px;
}
.maxtemp-value p span {
font-size: 20px;
}
.mintemp-value p {
text-align: center;
font-size: 30px;
font-weight: bolder;
font-family: 'Baloo Bhai 2', cursive;
}
.mintemp-value p span {
font-size: 20px;
}