Festivity all around!

This commit is contained in:
2021-12-25 11:18:58 +01:00
parent 6607efbc3a
commit 583b168f18
6 changed files with 15 additions and 7 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

View File

@@ -95,8 +95,8 @@
{{template "page_top" .}} {{template "page_top" .}}
<picture> <picture>
<source media="(max-width: 800px)" srcset="/res/img/header_orbitron.png"> <source media="(max-width: 800px)" srcset="/res/img/header_orbitron_santa.png">
<img class="header_image" src="/res/img/header_orbitron_wide.png" alt="Header image"> <img class="header_image" src="/res/img/header_orbitron_wide_santa.png" alt="Header image">
</picture> </picture>
<br/> <br/>

View File

@@ -129,7 +129,6 @@ head.valueimpression_loaded.subscribe(v => {
padding: 0; padding: 0;
text-align: center; text-align: center;
transition: right 0.5s; transition: right 0.5s;
background-color: var(--layer_2_color);
} }
.ad_space { .ad_space {
width: 100%; width: 100%;

View File

@@ -528,7 +528,15 @@ const keyboard_event = evt => {
width: 100%; width: 100%;
height: 100%; height: 100%;
overflow: hidden; overflow: hidden;
background-color: var(--layer_2_color); /* background-color: var(--layer_2_color); */
background: repeating-linear-gradient(
315deg,
#0b3100 0px,
#0b3100 18px,
#3d0000 20px,
#3d0000 38px,
#0b3100 40px
);
} }
/* Headerbar (row 1) */ /* Headerbar (row 1) */
@@ -614,7 +622,7 @@ const keyboard_event = evt => {
padding: 0; padding: 0;
text-align: left; text-align: left;
transition: left 0.5s, right 0.5s; transition: left 0.5s, right 0.5s;
background-color: var(--layer_2_color); /* background-color: var(--layer_2_color); */
z-index: 1; z-index: 1;
} }
.toolbar.toolbar_visible { left: 0; } .toolbar.toolbar_visible { left: 0; }

View File

@@ -36,7 +36,8 @@ func userStyle(r *http.Request) pixeldrainStyleSheet {
case "default": case "default":
fallthrough // use default case fallthrough // use default case
default: default:
return defaultPixeldrainStyle // return defaultPixeldrainStyle
return maroonStyle
} }
} }
@@ -264,7 +265,7 @@ var solarizedDarkStyle = pixeldrainStyleSheet{
} }
var maroonStyle = pixeldrainStyleSheet{ var maroonStyle = pixeldrainStyleSheet{
TextColor: hsl{0, 0, .7}, TextColor: hsl{0, 0, .8},
InputColor: hsl{0, .75, .25}, InputColor: hsl{0, .75, .25},
InputTextColor: hsl{0, 0, 1}, InputTextColor: hsl{0, 0, 1},
HighlightColor: hsl{0, 1, .4}, HighlightColor: hsl{0, 1, .4},