-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
76 lines (65 loc) · 1.03 KB
/
index.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
@keyframes show {
from {
transform: translate(0px, 100%);
}
to {
transform: translate(0px, 0px);
}
}
body {
background-color: #333333;
overflow-x: hidden;
}
.center {
text-align: center;
margin: 1em;
}
#posts {
font-family: sans-serif;
overflow-wrap: break-word;
color: #EBEBEB;
list-style: none;
padding: 0;
text-align: center;
max-width: 1080px;
width: 80%;
margin:0 auto;
}
#posts>li {
background-color: #555555;
margin-bottom: 0.4em;
border-radius: 0.2em;
animation-name: show;
animation-duration: 0.2s;
width: 100%;
padding-top: 0.5vh;
padding-bottom: 0.5vh;
}
p {
margin: 2px;
}
.logo {
font-family: "Comic Sans MS", "Comic Sans", cursive;
text-align: center;
color: #EBEBEB;
}
.top {
font-size: 2em;
}
.bottom {
font-size: 1em;
}
.small {
font-size: 0.7em;
margin: 0em;
}
.name {
margin-bottom: 0em;
}
.content {
font-size: 0.9em;
}
.avatar {
width: 3vh;
height: 3vh;
}