all repos — honk @ 26a49078ad8985b14dae2e080ef6e71757cfa615

my fork of honk

views/style.css (view raw)

  1html {
  2	--bg-page: #306;
  3	--bg-dark: #002;
  4	--fg: #dcf;
  5	--hl: #dcf;
  6	--fg-subtle: #a9c;
  7	--fg-limited: #a79;
  8}
  9
 10body {
 11	background: var(--bg-page);
 12	color: var(--fg);
 13	font-size: 1em;
 14	word-wrap: break-word;
 15	font-family: sans-serif, "Noto Color Emoji";
 16	line-height: 1.2;
 17	overscroll-behavior-y: contain;
 18}
 19pre, code {
 20	white-space: pre-wrap;
 21}
 22blockquote {
 23	margin-left: 0em;
 24	margin-bottom: 0em;
 25	padding-left: 0.5em;
 26	border-left: 1px solid var(--fg-subtle);
 27}
 28cite {
 29	margin-left: 2em;
 30}
 31table {
 32	display: block;
 33	max-width: 100%;
 34	overflow-x: auto;
 35}
 36a {
 37	color: var(--fg);
 38}
 39form, input, textarea {
 40	font-family: monospace, "Noto Color Emoji";
 41}
 42p {
 43	margin-top: 1em;
 44	margin-bottom: 1em;
 45}
 46input {
 47	background: var(--bg-page);
 48	color: var(--fg);
 49	font-size: 1.0em;
 50	line-height: 1.2em;
 51	padding: 0.4em;
 52}
 53#honkform input {
 54	font-size: 0.8em;
 55}
 56body > header {
 57	margin: 1em auto;
 58	font-size: 1.5em;
 59}
 60body > header span {
 61	margin-left: 2em;
 62}
 63body > header p {
 64	padding: 1em;
 65}
 66header > details {
 67	background: var(--bg-page);
 68	padding: 1em 1em 1em 1em;
 69	position: fixed;
 70	top: 0;
 71	left: 0;
 72	display: inline;
 73	max-height: calc(100% - 1em);
 74	overflow: auto;
 75	opacity: 0.7;
 76	overscroll-behavior: contain;
 77	z-index: 2;
 78}
 79header > details[open] {
 80	padding: 1em 1em 0em 1em;
 81	background: var(--bg-dark);
 82	border: 1px solid var(--hl);
 83	margin-bottom: 1em;
 84	opacity: 1.0;
 85}
 86header > details summary span {
 87	display: none;
 88}
 89header > details[open] summary span {
 90	display: inline;
 91}
 92header > details li {
 93	margin: 1em 0em 1em 0em;
 94}
 95details summary {
 96	cursor: pointer;
 97}
 98main {
 99	max-width: 1200px;
100	margin: auto;
101	font-size: 1.5em;
102}
103hr {
104	border-color: var(--hl);
105}
106.info {
107	background: var(--bg-dark);
108	border: 1px solid var(--hl);
109	margin-bottom: 1em;
110	padding: 0em 1em 0em 1em;
111}
112.info div {
113	margin-top: 1em;
114	margin-bottom: 1em;
115}
116label {
117	font-size: 0.8em;
118}
119label.button, button, select {
120	font-size: 16px;
121	font-family: monospace;
122	color: var(--fg);
123	background: var(--bg-page);
124	border: 1px solid var(--hl);
125	padding: 0.5em;
126	white-space: nowrap;
127}
128.buttonarray {
129	margin-top: -2.0em;
130}
131.buttonarray button, .buttonarray > span {
132	margin-top: 2.0em;
133	display: inline-block;
134}
135button a {
136	text-decoration: none;
137}
138button {
139	cursor: pointer;
140}
141form {
142	margin-top: 1em;
143}
144textarea {
145	padding: 0.5em;
146	font-size: 1em;
147	background: var(--bg-page);
148	color: var(--fg);
149	width: 600px;
150	height: 4em;
151	margin-bottom: 0.5em;
152	box-sizing: border-box;
153	max-width: 100%;
154}
155textarea#honknoise {
156	height: 10em;
157}
158input[type="checkbox"] {
159	position: fixed;
160	top: -9999px;
161}
162input[type="checkbox"] + span:after {
163	content: "no";
164}
165input[type="checkbox"]:checked + span:after {
166	content: "yes";
167}
168input[type="checkbox"]:focus + span:after {
169	outline: 1px solid var(--fg);
170}
171input[type=file] {
172	display: none;
173}
174
175.glow {
176	box-shadow: 0px 0px 16px var(--hl);
177}
178
179.honk {
180	margin: auto;
181	background: var(--bg-dark);
182	border: 1px solid var(--hl);
183	border-radius: 1em;
184	margin-bottom: 1em;
185	padding-left: 1em;
186	padding-right: 1em;
187	padding-top: 0;
188	overflow: hidden;
189}
190
191.chat {
192	border-bottom: 0.5px solid var(--fg-subtle);
193	padding-left: 1em;
194}
195.chat p {
196	margin-top: 0.2em;
197	margin-bottom: 0.2em;
198}
199.chattarget {
200	border-bottom: 1px solid var(--fg-subtle);
201}
202.chatstamp {
203	margin-left: -1em;
204}
205
206.honk	#honkform {
207		padding: 1em;
208		border: 1px solid var(--fg);
209	}
210.honk	a {
211		color: var(--fg);
212	}
213.honk	header {
214		white-space: nowrap;
215		overflow: hidden;
216		text-overflow: ellipsis;
217		font-size: 0.8em;
218		line-height: 1.1;
219		margin-top: 1em;
220		height: 64px;
221	}
222
223.honk	header	.clip a {
224			color: var(--fg-subtle);
225		}
226.honk	header	img {
227			float: left;
228			margin-right: 1em;
229			width: 64px;
230			height: 64px;
231		}
232.honk	header	p {
233			margin-top: 0px;
234		}
235.honk	.actions button {
236		margin-left: 4em;
237		margin-top: 2em;
238	}
239.honk	.noise {
240		line-height: 1.4;
241	}
242
243.honk	.noise	code .kw { font-weight: bold; }
244.honk	.noise	code .bi { font-weight: bold; }
245.honk	.noise	code .st { color: var(--fg-subtle); }
246.honk	.noise	code .nm { color: #ba88ff; }
247.honk	.noise	code .op { color: #ba88ff; }
248.honk	.noise	code .tp { font-weight: bold; }
249.honk	.noise	code .cm { color: var(--fg-subtle); font-style: italic; }
250.honk	.noise	code .al { color: #aaffbb; }
251.honk	.noise	code .dl { color: #ffaabb; }
252
253.honk	details.actions summary {
254		color: var(--fg-subtle);
255}
256.subtle .noise {
257		color: var(--fg-subtle);
258		font-size: 0.8em;
259}
260.subtle .noise a {
261		color: var(--fg-subtle);
262}
263.limited {
264	border: 1px solid var(--fg-limited);
265	color: var(--fg-limited);
266}
267.limited	.glow {
268		box-shadow: 0px 0px 16px var(--fg-limited);
269}
270.limited	.noise {
271		color: var(--fg-limited);
272	}
273.limited	.noise a {
274		color: var(--fg-limited);
275	}
276.limited	details.actions summary {
277		color: var(--fg-limited);
278	}
279details.noise[open] summary {
280	display: none;
281}
282h1, h2 {
283	font-size: 1.2em;
284}
285h3, h4 {
286	font-size: 1.1em;
287}
288
289img:not(.emu) {
290	background: var(--bg-page);
291}
292img, video {
293	max-width: 100%;
294	max-height: 600px;
295}
296.noise img:not(.emu) {
297	display: block;
298}
299img.emu {
300	width: 2em;
301	height: 2em;
302	vertical-align: middle;
303	margin: -2px;
304	object-fit: contain;
305}
306.nophone {
307	position: fixed;
308	opacity: 0.7;
309	cursor: pointer;
310}
311@media screen and (max-width: 1360px) {
312	.nophone {
313		display: none;
314	}
315}
316@media screen and (max-width: 740px) {
317	body {
318		font-size: 12px;
319	}
320	.honk header {
321		height: 52px;
322	}
323	.honk header img {
324		width: 48px;
325		height: 48px;
326	}
327	details summary {
328		outline: none;
329	}
330}
331@media print {
332	#topmenu, #topspacer, #infobox, #refreshbox, .actions {
333		display: none;
334	}
335	html {
336		--bg-page: white;
337		--bg-dark: white;
338		--fg: black;
339		--fg-subtle: black;
340		--fg-limited: #a79;
341	}
342}
343
344/*
345 * CSP: style-src: self
346 */
347
348li.details {
349	list-style-type: none;
350	margin-left: -1em;
351}
352
353.left1em {
354	margin-left: 1em;
355}
356
357.hide {
358	display: none;
359}
360
361.textright {
362	text-align: right;
363}
364
365.font08em {
366	font-size: 0.8em;
367}
368
369.font18em {
370	font-size: 1.8em;
371}
372
373.wsnowrap {
374	white-space: nowrap;
375}
376
377.skinny main {
378	max-width: 700px;
379}
380
381.fontmonospace {
382	font-family: monospace;
383}