-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
84 lines (81 loc) · 1.33 KB
/
stylesheet.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
body{
padding: 100px;
background-color: rgb(33, 33, 33);
color: rgb(244, 246, 248);
font: bold sans-serif;
}
label{
text-align: right;
font-size: 300%;
}
.date{
font-size: 150%;
}
.time{
font-size: 200%;
}
#text{
size: 200%;
text-align: center;
width: 30%;
height: 10%;
}
.search{
color: rgb(247, 248, 249);
background-color: rgb(5, 61, 121);
padding: 2px;
border-radius: 100px;
font: bold sans-serif;
font-size: 20px;
}
.get{
color: rgb(247, 248, 249);
background-color: rgb(5, 61, 121);
padding: 5px;
width: 60%;
border-radius: 100px;
font: bold sans-serif;
font-size: 20px;
/* opacity: 1; */
}
label,#text,.get{
margin-top: 10px;
margin-bottom: 10px;
}
.get:hover{
background-color: rgb(142, 190, 240);
}
.search:hover{
background-color: rgb(142, 190, 240);
}
.data{
font-size: 150%;
}
.temp{
font-size: 200%;
}
.icon,.description,.humidity,.wind{
font-size: 90% !important;
}
.left{
float:left; width: 49%;
}
.right{
float:right; width: 49%;
}
@media all and (max-width:1400px) {
.left{
float:left; width: 46%;
}
.right{
float:right; width: 48%;
}
}
@media all and (max-width:850px) {
.left{
float:left; width: 44%;
}
.right{
float:right; width: 46%;
}
}