-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (56 loc) · 877 Bytes
/
styles.css
File metadata and controls
65 lines (56 loc) · 877 Bytes
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
.weather-app {
margin: auto;
width: 300px;
height: 160px;
border: 1px solid black;
border-radius: 20px;
box-shadow: 10px 10px 50px #888888;
overflow: hidden;
text-align:center;
font-family: "Mono";
}
.left {
float: left;
background: #262626;
padding:10px;
width:150px;
height:100%;
color:white;
}
.temperature {
margin-top:30px;
margin-bottom:5px;
font-size:32px;
font-weight: bold;
width: 150px;
}
.location {
font-size: 18px;
width:100%;
width:150px;
}
.right {
float: right;
width:130px;
height:100%;
}
.top {
height: 100px;
width: 100%;
margin: auto;
background: #cec;
}
.top img {
margin-top: 15px;
}
.bottom {
height: 70px;
background: #669999;
color: white;
font-weight: bold;
}
.humidity {
padding: 8px;
}
.wind {
}