forked from yohnz/weather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (56 loc) · 834 Bytes
/
style.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
body{
width:740px;
height:400px;
font-family: 'Microsoft Yahei';
color:#333;
background:#fefefe;
text-shadow:1px 1px 6px #333;
}
.city{
text-align:center
}
.today{
padding-bottom:30px;
}
.row_detail{
display: flex;
direction: row;
justify-content:center;
align-items: center;
}
.row_detail img{
width:80px;
}
.row_detail h1{
font-size:60px;
}
.wind{
text-align: center;
}
.content{
display: flex;
direction: column
}
.wrap{
display: flex;
direction: row;
flex: 1;
justify-content:space-around;
align-items: center;
}
.row{
background:#fff;
border:1px solid #ccc;
padding:10px;
box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.row img{
width:80px;
}
.row h1{
font-size:18px;
}
h1,h4{
text-align: center;
margin:0;
}