summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorlolmao <lolmao@noreply.gov>2023-10-30 11:51:01 -0500
committerlolmao <lolmao@noreply.gov>2023-10-30 11:51:01 -0500
commitf671d298909cea11333a6fe290c0bed9b41a00f7 (patch)
treeb5a06c2c224443ad36cba53afdecd002f83fff40 /css
parentf813bcc4fe003f8619f97bc307bd1c60929caa0e (diff)
Rearrange folder structure
Diffstat (limited to 'css')
-rw-r--r--css/base.css76
1 files changed, 76 insertions, 0 deletions
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 @@
1/* Generated by Squirrel Font */
2@font-face {
3 font-family: 'zai_courier_polski_1941Rg';
4 src: url('../fonts/courier_polski_1941/webkit/zai_courierpolski1941-webfont.woff2') format('woff2'),
5 url('../fonts/courier_polski_1941/webkit/zai_courierpolski1941-webfont.woff') format('woff');
6 font-weight: normal;
7 font-style: normal;
8
9}
10
11@font-face {
12 font-family: 'schizoid_personalityregular';
13 src: url('../fonts/schizoid_personality/webkit/schizoid_personality-webfont.woff2') format('woff2'),
14 url('../fonts/schizoid_personality/webkit/schizoid_personality-webfont.woff') format('woff');
15 font-weight: normal;
16 font-style: normal;
17
18}
19/* */
20
21
22body {
23 padding: 0;
24 margin: 0;
25}
26
27#top-bar {
28 padding: 0.5%;
29
30 background-image: url(../images/sketty.jpeg);
31 background-size: cover;
32
33 /*background-color: red;*/
34
35 position: -webkit-sticky;
36 position: sticky;
37 top: 0;
38
39 display: inline-block;
40 width: 99%; /* This is bullshit */
41}
42
43#top-bar h1 {
44 padding: 0;
45 margin: 0;
46
47 position: inherit;
48
49 text-align: left;
50 font-family: 'schizoid_personalityregular', 'zai_courier_polski_1941Rg', Courier, monospace;
51 font-size: 500%;
52}
53
54#top-bar a {
55 color: inherit;
56 text-decoration: none;
57}
58
59ul li {
60 list-style-type: '- ';
61}
62
63#chung {
64 animation: rotation 1s;
65 animation-timing-function: linear;
66 animation-iteration-count: infinite;
67}
68
69@keyframes rotation {
70 from {
71 transform: rotate(0deg);
72 }
73 to {
74 transform: rotate(359deg);
75 }
76} \ No newline at end of file