-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmain.css
More file actions
69 lines (58 loc) · 883 Bytes
/
main.css
File metadata and controls
69 lines (58 loc) · 883 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
66
67
68
69
body {
margin: 0;
}
body * {
box-sizing: border-box;
}
.sites {
padding-top: 30px;
display: flex;
justify-content: center;
flex-flow: row wrap;
}
.card {
border: 1px solid #ddd;
padding: 10px;
width: 240px;
height: 160px;
display: inline-block;
vertical-align: top;
margin: 10px;
}
.ionic{
background: #296AD4;
padding: 30px;
}
.dark{
background: #444;
}
.site img {
max-width: 100%;
max-height: 100%;
}
.site {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
}
.fork {
text-align: center;
font-size: 12px;
margin: 40px;
}
.fork a {
color: #aaf;
}
.weibo-page {
margin: 40px;
}
.weibo-page .weibo {
display: inline-block;
}
.weibo-page .weibo img {
width: 80px;
height: 80px;
box-shadow: 0 0 2px black;
}