-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (92 loc) · 1.74 KB
/
style.css
File metadata and controls
99 lines (92 loc) · 1.74 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
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
body{
font-family: Georgia, 'Times New Roman', Times, serif;
overflow: hidden;
background-image: url(background.jpg);
background-repeat: no-repeat;
background-size: 100vw 100vh;
height: 100vh;
text-align: center;
}
#title{
font-size: 25px;
opacity: 0.4;
}
.input{
border-style: none;
margin-top: 25px;
background-color: rgb(191, 191, 224);
font-size: 20px;
width: 240px;
height: 35px;
}
.btn{
background-color: rgb(240, 231, 221);
font-size: 20px;
width: 40px;
height: 36px;
cursor: pointer;
}
.container{
position: relative;
margin: 0 auto;
margin-top: 5%;
border: thin solid black;
border-radius: 5px;
background-color: white;
opacity: 0.6;
min-width: 300px;
min-height: 70vh;
width: 50vw;
height: 70vh;
}
.city{
margin-top: 0;
font-size: 30px;
font-weight: 1000;
}
.container-temp{
display: flex;
justify-content: center;
align-items: center;
position: relative;
margin: 0 auto;
border: thin solid black;
border-radius: 5px;
min-width: 60px;
width: 10vw;
height: 50px;
background-color: rgb(240, 231, 221);
}
#temperature{
font-size: 20px;
font-weight: 900;
color: blue;
}
span{
font-size: 20px;
font-weight: 900;
color: blue;
}
.temp{
margin-top: 20px;
font-size: 20px;
font-weight: 700;
}
#low-high{
font-size: 20px;
font-weight: 700;
}
#date{
margin-top: -20px;
font-size: 20px;
font-weight: 700;
}
@media only screen and (min-width: 480px){
body{
background-image: url(background.jpg);
background-repeat: no-repeat;
background-size: 100vw 100vh;
height: 100vh;
text-align: center;
}
}