summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
Diffstat (limited to 'static')
-rw-r--r--static/style.css157
1 files changed, 0 insertions, 157 deletions
diff --git a/static/style.css b/static/style.css
deleted file mode 100644
index 91362c0..0000000
--- a/static/style.css
+++ /dev/null
@@ -1,157 +0,0 @@
-* {
- box-sizing: border-box;
-}
-
-body {
- color: #999;
- background-color: #000;
-
- width: 90%;
- max-width: 1000px;
- margin: 20px auto;
- font-size: 16px;
-}
-
-header {
- margin: auto;
-}
-
-header h1 {
- display: inline;
- margin: 1px;
-}
-
-header h2 {
- margin: 1px;
-}
-
-main {
- display: flex;
- flex-direction: column;
- line-height: 1.6;
-}
-
-main > div {
- margin: 5px;
-}
-
-footer {
- font-size: 0.8rem;
- text-align: center;
- opacity: 0.7;
-}
-
-a, a:visited {
- color: #0077aa;
-}
-
-a:hover {
- color: #00aaee;
-}
-
-pre {
- max-width: 100%;
- overflow: auto;
- background: #050505;
- padding: 10px;
- border: 1px dashed #999;
-}
-
-.header-container {
- display: flex;
- flex-direction: column;
-}
-
-.content {
- padding: 5px;
- flex-grow: 1;
- overflow: auto;
- border: dashed 1px #999;
- background: #050505;
-}
-
-.navbar {
- display: block;
- padding-top: 5px;
-}
-
-.navbar ul {
- list-style-type: none;
- margin: 0px;
- padding: 0px;
- display: flex;
- flex-wrap: wrap;
- gap: 10px;
-}
-
-.navbar li a {
- display: block;
- color: #999;
- text-decoration: none;
- border: dashed 1px;
- text-align: center;
- padding: 5px 10px;
-}
-
-.navbar li a:hover {
- display: block;
- color: #000;
- background-color: #999;
-}
-
-.bottom-align {
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
-}
-
-.esquizo {
- width: 100px;
- display: inline;
-}
-
-.image-container {
- text-align: center;
-}
-
-.image-container > img {
- display: inline;
- max-width: 100%;
-}
-
-.scanlines::before {
- content: " ";
- display: block;
- position: fixed;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- background: repeating-linear-gradient(
- rgba(18, 16, 16, 0) 0px,
- rgba(18, 16, 16, 0) 1px,
- rgba(0, 0, 0, 0.25) 1px,
- rgba(0, 0, 0, 0.25) 2px
- );
- background-size: 100% 100%;
- z-index: 10;
- pointer-events: none; /* Allows users to click elements underneath */
-}
-
-@media (min-width: 1000px) {
- .header-container {
- justify-content: center;
- flex-direction: row;
- }
-
- .navbar ul {
- display: flex;
- flex-direction: column;
- gap: 0px;
- width: 125px;
- }
-
- main {
- flex-direction: row;
- }
-}