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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
.footer {
margin-top: 1em;
}
.media-body > .panel,
.media-body > .well,
.media-body > .alert {
margin-bottom: 0;
}
.seamless-inline {
display: inline;
margin: 0;
padding: 0;
border: none;
}
/* boost specificity */
html.no-js .js-only.js-only.js-only {
display: none !important;
}
.panel-body > blockquote {
font-size: 14px;
}
.post-images {
margin-top: 8px;
}
.image-attachment {
float: left;
display: block;
margin-right: 8px;
text-decoration: none;
}
.image-attachment-image {
display: block;
border: 4px solid white;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.33), 0 0 1px rgba(0,0,0,.33), 0 1px 1px rgba(0,0,0,.075) inset;
box-shadow: 0 1px 2px rgba(0,0,0,.33), 0 0 1px rgba(0,0,0,.33), 0 1px 1px rgba(0,0,0,.075) inset;
}
.margin-right { margin-right: 8px; }
.margin-left { margin-left: 8px; }
.margin-top { margin-top: 8px; }
.margin-bottom { margin-bottom: 8px; }
.margin-right-2x { margin-right: 16px; }
.margin-left-2x { margin-left: 16px; }
.margin-top-2x { margin-top: 16px; }
.margin-bottom-2x { margin-bottom: 16px; }
.margin-right-3x { margin-right: 24px; }
.margin-left-3x { margin-left: 24px; }
.margin-top-3x { margin-top: 24px; }
.margin-bottom-3x { margin-bottom: 24px; }
.margin-right-4x { margin-right: 32px; }
.margin-left-4x { margin-left: 32px; }
.margin-top-4x { margin-top: 32px; }
.margin-bottom-4x { margin-bottom: 32px; }
.margin-right-0 { margin-right: 0; }
.margin-left-0 { margin-left: 0; }
.margin-top-0 { margin-top: 0; }
.margin-bottom-0 { margin-bottom: 0; }
.icon-well {
position: relative;
overflow: hidden;
z-index: 0;
padding-left: 56px;
}
.icon-well>.icon,
.icon-well>.glyphicon {
font-size: 72px;
opacity: 0.67;
position: absolute;
left: 5px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
z-index: -1;
text-shadow: none;
}
.color-success { color: #5cb85c; }
.color-info { color: #5bc0de; }
.color-warning { color: #f0ad4e; }
.color-danger { color: #d9534f; }
.post-container.collapsed {
max-height: 800px;
position: relative;
}
.post-container.collapsed > .post-container-posts {
max-height: 800px;
overflow: hidden;
}
.post-container-controls {
display: none;
position: absolute;
left: 0;
right: 0;
bottom: 0;
background-image: linear-gradient(transparent, white 56%);
padding: 80px 8px 8px;
text-align: center;
z-index: 0;
}
.post-container-controls::after {
content: "";
display: block;
position: absolute;
left: 0;
right: 0;
height: 1px;
background: #ddd;
z-index: -1;
top: 56%;
}
.post-container.collapsed > .post-container-controls {
display: block;
}
#i_pfp {
max-width: 200px;
}
.text-normal {
font-size: 14px;
line-height: 1.428;
}
.label.text-normal {
font-size: 10.5px;
line-height: 1;
}
|