-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.css
77 lines (77 loc) · 1.16 KB
/
main.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
body {
width: 100%;
position: relative;
background: #e9ebee;
}
#header {
padding: 15px;
width: 100%;
position: fixed;
height: 60px;
background: #ffffff;
border-bottom-color: #e5e5e5;
z-index: 99999;
}
.code-link {
cursor: pointer;
text-decoration: none;
}
.code-link a {
padding-left: 10px;
text-decoration: none;
}
.header-link {
font-size: 20px;
margin: 0 20px;
}
.header-row {
height: 100%;
}
.rank {
margin-bottom: 5px;
font-size: 22px;
}
#root {
position: relative;
top: 75px;
height: 100%;
padding: 20px 20px;
margin: 0 auto;
background: #e9ebee;
}
.post {
position: relative;
display: inline-block;
height: 450px;
width: 100%;
padding: 20px;
background: #ffffff;
margin: 10px 0;
border-radius: 4px;
}
.good {
position: absolute;
bottom: 75px;
}
.date {
position: absolute;
bottom: 45px;
}
.link {
overflow: hidden;
width: 90%;
position: absolute;
bottom: 15px;
}
.message {
height: 70%;
overflow: auto;
font-size: 1rem;
text-overflow: ellipsis;
}
a {
height: 20px;
}
.icon {
margin-right: 10px;
}