UNPKG

819 BCSSView Raw
1/**
2 * This is just an empty theme.
3 */
4
5body {
6 margin: 0;
7}
8
9.signed-out #main {
10 left: 5px;
11}
12
13#sidebar {
14 bottom: 52px;
15}
16
17#footer {
18 border-radius: 2px;
19 bottom: 4px;
20 left: 5px;
21 width: 210px;
22}
23
24#main {
25 bottom: 4px;
26 right: 5px;
27 top: 4px;
28}
29
30#chat .unhandled .from {
31 color: #ddd;
32}
33
34#windows .window::before {
35 background: #f4f4f4;
36 background-image: linear-gradient(#f4f4f4, #ececec);
37 border-bottom: 1px solid #d7d7d7;
38 content: " ";
39 display: block;
40 height: 10px;
41 position: relative;
42 z-index: 10;
43}
44
45#windows .window {
46 border-radius: 2px;
47}
48
49@media (max-width: 768px) {
50 #sidebar {
51 left: -220px;
52 }
53
54 #footer {
55 left: -215px;
56 width: 215px;
57 }
58
59 #main {
60 left: 0;
61 bottom: 0;
62 right: 0;
63 top: 0;
64 }
65
66 #windows .window::before {
67 display: none;
68 }
69
70 #windows .window {
71 border-radius: 0;
72 }
73}