-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather.css
78 lines (71 loc) · 1.44 KB
/
weather.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
/*centigrade and fahereneit*/
@import url('https://fonts.googleapis.com/css?family=Bungee+Inline|Lobster|Pacifico');
/*header and temperature text style*/
body{
background-color:rgba(0,154,0,0.3);margin:0px; padding:0px;
}
.tempStyle{
font-family: 'Lobster', cursive;
font-size:3em;
}
strong{
color:#000;font-family: cursive;
}
.defaultTemp,.TCTF{
color:blue;
}
.TCTF:hover{
color:blue;
cursor:pointer;
}
.msgContainer{
color:#FFF;
align-items:center;
font-family: 'Bungee Inline', cursive;
background-color:rgba(0,154,0,0.7);
}
button{
margin: 0 0 0 25%;
}
footer{
font-family: 'Lobster', cursive;
position : relative;
margin: 2% 2% 1% 40%;
}
/* Small devices (small phones &smartphones) */
@media (max-width: 600px) {
body{
border:5px solid #000a00;font-size:1em;
}
.msgContainer{
margin:20px 10px 10px 10px;
}
}
/* Small devices (tablets) */
@media (min-width: 600px) {
body{
border:7px solid #000a55;font-size:1.9em;
}
.msgContainer{
margin:20px 10px 10px 10px;
}
}
/* Medium devices (desktops) */
@media (min-width: 850px) {
body{
border:10px solid #000a99;font-size:2.2em;
}
.msgContainer{
margin:20px 10px 10px 10px;
}
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1100px) {
body{
border:20px solid #000a09;font-size:2.8em;
}
.msgContainer{
margin:30px;
}
}
/* */