chore(deps): add gin-contrib/gzip for response compression
Add `github.com/gin-contrib/gzip` to the module dependencies and update `go.sum` with the newly introduced transitive dependencies, preparing the Gin server for gzip-compressed responses.chore(deps): add gin-contrib/gzip for response compression Add `github.com/gin-contrib/gzip` to the module dependencies and update `go.sum` with the newly introduced transitive dependencies, preparing the Gin server for gzip-compressed responses.
This commit is contained in:
83
static/css/app.css
Normal file
83
static/css/app.css
Normal file
@@ -0,0 +1,83 @@
|
||||
@font-face {
|
||||
font-family: 'PixelOperator';
|
||||
src: url('/static/fonts/pixel_operator/PixelOperator.ttf');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'PixelOperator';
|
||||
src: url('/static/fonts/pixel_operator/PixelOperator-Bold.ttf');
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'PixelOperatorMono';
|
||||
src: url('/static/fonts/pixel_operator/PixelOperatorMono.ttf');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'PixelOperatorMono';
|
||||
src: url('/static/fonts/pixel_operator/PixelOperatorMono-Bold.ttf');
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'PixeloidSans';
|
||||
src: url('/static/fonts/pixeloid_sans/PixeloidSans.ttf');
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'PixeloidSans';
|
||||
src: url('/static/fonts/pixeloid_sans/PixeloidSans-Bold.ttf');
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
:root {
|
||||
font-family: 'PixeloidSans', 'PixelOperator', sans-serif, Arial, Helvetica;
|
||||
font-smooth: never;
|
||||
|
||||
image-rendering: pixelated;
|
||||
|
||||
cursor: url('/static/cursors/vaporwave-hotline-white-plus/Normal\ Select.cur'), auto;
|
||||
|
||||
--base-font-size: 14px;
|
||||
|
||||
/* Colours */
|
||||
--w98-blue: #000078;
|
||||
--w98-blue-gradient: linear-gradient(to right, #000078, 80%, #0f80cd);
|
||||
--w98-gray: #c0c0c0;
|
||||
--w98-gray2: #a6a6a6;
|
||||
--w98-gray-gradient: linear-gradient(to bottom, #fff, 95%, #c0c0c0);
|
||||
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
a, .window-roach-message, .window-buttons .wbtn:not(.disabled_button) {
|
||||
cursor: url('/static/cursors/vaporwave-hotline-white-plus/Link\ Select.cur'), auto;
|
||||
}
|
||||
|
||||
input[type="text"], textarea, [contenteditable="true"] {
|
||||
cursor: url('/static/cursors/vaporwave-hotline-white-plus/Hotline\ Black\ Handwriting.cur'), text;
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: var(--base-font-size);
|
||||
|
||||
color: white;
|
||||
background-color: #000;
|
||||
}
|
||||
|
||||
html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #000000;
|
||||
background-image: url('/static/img/bg/stars1.gif');
|
||||
background-repeat: repeat;
|
||||
width: 100vw;
|
||||
min-height: 100vh;
|
||||
height: auto;
|
||||
}
|
||||
Reference in New Issue
Block a user