-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (63 loc) · 1.3 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: url('Free-Download-Weather-Wallpaper.jpg');
height: 100vh;
overflow: hidden;
background-repeat: no-repeat;
background-position: top center;
font-family: Arial, Helvetica, sans-serif;
background-size: cover;
}
.app-main {
width: 50vh;
margin: 100px auto;
background-color: #dde2e699;
padding: 20px;
text-align: center;
}
.app-main * {
margin-bottom: 20px;
}
.input-box {
width: 280px;
background-color: rgba(255, 255, 255, 0.6);
border: none;
outline: none;
color: #582233;
font-size: 1.2rem;
height: 50px;
border-radius: 5px;
padding: 0 10px;
text-align: center;
}
.input-box:focus {
background-color:rgba(255, 255, 255); ;
}
.Weather-body{
color: #582233;
padding: 20px;
line-height: 2rem;
border-radius: 10px;
background-color: rgba(255, 255, 255, 0.6);
height: 50vh;
}
.location-details{
font-weight: bold;
}
.Weather-status {
padding: 20px;
}
.temp {
font-size: 50pt;
font-weight: 700;
margin: 20px 0;
text-shadow: 2px 4px rgba(0, 0, 0, 0.3);
}
.min-max, .weather {
font-size: 12px;
font-weight: 600;
}