-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfeed.css
92 lines (77 loc) · 1.32 KB
/
feed.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
body {
width: 750px;
font-family: Century Gothic, sans-serif;
// background-color: #660000;
color: #ccccff;
}
#header {
margin: 10px;
font-size: 8pt;
text-align: center;
}
#header h1 {
text-align: center;
font-size: 24pt;
margin: 4px 4px 1px 4px;
}
#headerposts {
height: Calc(100% - 25px);
// height: -moz-calc(100% - 25px);
overflow: hidden;
}
.post {
display: table;
max-width: 740px;
height: auto;
margin: 10px;
border-style: hidden;
border-width: 2px;
border-radius: 2px;
padding: 5px;
background-color: #99ffff;
color: #330033;
}
.post_header {
display: table;
border-style: dashed;
border-width: 1px;
border-radius: 3px;
background-color: #99ffcc;
padding: 3px;
}
.author {
display: table-cell;
padding: 3px;
width: 540px;
font-size: 18pt;
}
.author img {
width: 30px;
height: 30px;
}
.time {
display: table-cell,block;
padding: 3px;
width: 200px;
font-size: 10pt;
text-align: right;
}
.body {
}
.body img {
max-width: 1000px;
max-height: 300px;
float:right;
}
#footer {
position: fixed;
bottom: 5px;
text-align: center;
width: 750px;
}
#footer a {
// color: #4863a0;
// color: #99ffcc;
color: #ccccff;
text-decoration: none;
}