forked from Cloudxtreme/stamplay-messageboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
68 lines (56 loc) · 858 Bytes
/
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
html,body {
max-height:100vh;
}
.virtual-scroll {
height:calc(100vh - 64px);
overflow-y: scroll;
}
.author-tag {
position: absolute;
right: 0;
top: 0px;
padding: 3px 5px;
}
@media screen and (max-width:600px) {
.virtual-scroll {
height:calc(100vh - 232px);
overflow-y: scroll;
}
}
.title {
font-size:1.5em;
font-weight:100;
text-shadow:1px 1px 4px #333;
}
.message {
padding:10px
}
.no-margin-bottom {
margin-bottom: 0;
}
.bottom-left {
position: absolute;
right:0;
bottom:0;
}
.bottom-right {
position: absolute;
left:0;
bottom:0;
}
.avatar-container {
margin: 5px -5px;
max-height: 100%;
}
.flex {
display:flex;
}
.lightweight {
font-weight: 100;
}
.heavyweight {
font-weight: 900;
}
.message {
padding: 7.5px !important;
}