diff options
Diffstat (limited to 'stylesheets/style.css')
| -rw-r--r-- | stylesheets/style.css | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/stylesheets/style.css b/stylesheets/style.css new file mode 100644 index 0000000..a57bb72 --- /dev/null +++ b/stylesheets/style.css @@ -0,0 +1,56 @@ +body +{ + background: black; + color: #fc6c8e; + max-width: 960px; + margin-left: auto; + margin-right: auto; + font-family: "noto sans mono", monospace; + font-size: 16px; +} + +a { + color: #fc6c8e; + font-weight: bold; +} + +a:hover { + color: purple; +} + +figcaption { + display: none; +} + +.box { + display: inline-block; +} + +.boxes { + display: flex; +} + +hr { + border: #202020 solid 1px; +} + +table +{ + border-collapse: collapse; +} + +table td, th +{ + border: 1px solid #202020; + padding: 4px; +} + +/* +body::after { + position: fixed !important; + content: url(); + top: 0px !important; + right: 0 !important; + z-index:-1; + +} */ |
