-
Notifications
You must be signed in to change notification settings - Fork 0
/
weather.css
74 lines (62 loc) · 1.08 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
body{
background-image:url("body3.jpg") ;
background-repeat:no-repeat;
}
.mainBox{
position: relative;
background-image:url("mainBox.jpg");
background-size: 400px 500px;
height: 400px;
width: 30%;
margin: 0 auto;
padding: 20px;
border-radius : 10px;
overflow: auto;
margin-top: 5%;
padding:20px;
box-shadow: 5px 5px 5px #4F3A35;
}
.location{
text-align: center;
color : #F2F0EF;
font-size:30px;
font-family: Times New Roman;
}
.temperature{
position: absolute;
margin-top:60px;
margin-left : 100px;
color : #F2F0EF;
font-size:70px;
font-family: Times New Roman;
}
.converter{
position: absolute;
margin-left : 190px;
margin-top:50px;
color : #F2F0EF;
font-size:30px;
font-family: Times New Roman;
}
.celsius {
text-decoration:none;
color : #F2F0EF;
}
.farenheit {
text-decoration:none;
color : #F2F0EF;
}
.condition{
text-align: center;
margin-top:160px;
color : #F2F0EF;
font-size:30px;
font-family: Times New Roman;
}
.icon{
text-align: center;
margin-top:40px;
color : #F2F0EF;
font-size:30px;
font-family: Times New Roman;
}