UNPKG

1.55 kBCSSView Raw
1/*
2Crypto theme for The Lounge.
3
4Installation instructions can be found here
5https://thelounge.github.io/docs/server/configuration.html#theme
6
7Author: Aynik
8GitHub: https://github.com/aynik
9*/
10
11body {
12 background: #000;
13 font: 16px Consolas, Menlo, Monaco, "Lucida Console", "DejaVu Sans Mono", "Courier New", monospace;
14}
15
16a,
17#chat a {
18 color: #00ff0e;
19}
20
21a:hover,
22#chat a:hover {
23 color: #3eff48;
24}
25
26#windows .window h2,
27#windows .window h3 {
28 color: #666;
29}
30
31#windows .window h2 {
32 border-bottom: none;
33}
34
35.container {
36 margin: 40px auto;
37}
38
39#sign-in label {
40 color: #666;
41}
42
43#sign-in label input {
44 margin-top: 10px !important;
45 font-size: 14px;
46}
47
48.btn {
49 border-color: #00ff0e;
50 color: #00ff0e;
51}
52
53.btn:disabled,
54.btn:hover {
55 background: #00ff0e;
56}
57
58#connection-error {
59 background: #f00;
60}
61
62#settings .opt {
63 line-height: 20px;
64 font-size: 12px;
65}
66
67#sidebar .chan:first-child {
68 color: #00ff0e;
69}
70
71#sidebar .chan .name::after {
72 background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
73}
74
75#sidebar button,
76#sidebar .chan,
77#sidebar .sign-out,
78#chat .time,
79#chat .count::before,
80#sidebar .empty {
81 color: #666;
82}
83
84#chat .unhandled .from {
85 color: #ddd;
86}
87
88#sidebar .active {
89 color: #fff;
90}
91
92#windows .header .topic,
93.messages .msg,
94.sidebar {
95 line-height: 1.8;
96}
97
98#chat .user {
99 color: black;
100 font-weight: bold;
101}
102
103#windows #form .input {
104 font-family: inherit;
105 font-size: 12px;
106}
107
108#windows select.input {
109 height: 38px;
110}
111
112#footer .icon {
113 color: #666;
114}
115
116/* Previews */
117
118#chat .toggle-text {
119 line-height: initial;
120}