-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (65 loc) · 1.23 KB
/
style.css
File metadata and controls
70 lines (65 loc) · 1.23 KB
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background:url("./bg.jpg");
height: 100vh;
width: 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: rgba(240, 248, 255, 0.6);
padding: 20px;
text-align: center;
}
.app-main > * {
margin-bottom: 20px;
}
.input-box {
width: 100%;
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{
display: none;
color: #582233;
padding: 20px;
line-height: 2rem;
border-radius: 10px;
background-color: rgba(255, 255,255,0.6);
height: 50vh;
}
.location-detail{
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: 12pt;
font-weight: 600;
}