From f671d298909cea11333a6fe290c0bed9b41a00f7 Mon Sep 17 00:00:00 2001 From: lolmao Date: Mon, 30 Oct 2023 11:51:01 -0500 Subject: Rearrange folder structure --- css/base.css | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 css/base.css (limited to 'css/base.css') diff --git a/css/base.css b/css/base.css new file mode 100644 index 0000000..4becbef --- /dev/null +++ b/css/base.css @@ -0,0 +1,76 @@ +/* Generated by Squirrel Font */ +@font-face { + font-family: 'zai_courier_polski_1941Rg'; + src: url('../fonts/courier_polski_1941/webkit/zai_courierpolski1941-webfont.woff2') format('woff2'), + url('../fonts/courier_polski_1941/webkit/zai_courierpolski1941-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} + +@font-face { + font-family: 'schizoid_personalityregular'; + src: url('../fonts/schizoid_personality/webkit/schizoid_personality-webfont.woff2') format('woff2'), + url('../fonts/schizoid_personality/webkit/schizoid_personality-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} +/* */ + + +body { + padding: 0; + margin: 0; +} + +#top-bar { + padding: 0.5%; + + background-image: url(../images/sketty.jpeg); + background-size: cover; + + /*background-color: red;*/ + + position: -webkit-sticky; + position: sticky; + top: 0; + + display: inline-block; + width: 99%; /* This is bullshit */ +} + +#top-bar h1 { + padding: 0; + margin: 0; + + position: inherit; + + text-align: left; + font-family: 'schizoid_personalityregular', 'zai_courier_polski_1941Rg', Courier, monospace; + font-size: 500%; +} + +#top-bar a { + color: inherit; + text-decoration: none; +} + +ul li { + list-style-type: '- '; +} + +#chung { + animation: rotation 1s; + animation-timing-function: linear; + animation-iteration-count: infinite; +} + +@keyframes rotation { + from { + transform: rotate(0deg); + } + to { + transform: rotate(359deg); + } +} \ No newline at end of file -- cgit v1.2.3