-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
81 lines (69 loc) · 1.25 KB
/
styles.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container{
margin:20px;
padding:20px;
align-items: center;
justify-content:center;
}
body {
background-image: url('images/s.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:black;
padding: 20px;
text-align: center;
}
.app-main > * {
margin-bottom: 20px;
}
.input-box {
width: 100%;
background-color:white;
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:white;
}
.weather-body {
display: none;
color:whitesmoke;
line-height: 2rem;
border-radius: 10px;
background-color: black;
height: 26vh;
}
.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: 12pt;
font-weight: 600;
}