summaryrefslogtreecommitdiff
path: root/css/base.css
blob: 85dc161753bd402f71c4bf2f192e10e33e72e893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* 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;
}

#content {
	margin: 1%;
}

#top-bar {
	padding: 0.5%;

	/*background-image: url(../images/sketty.jpeg);
	background-size: cover;*/

	background-color: black;
	color: white;

	position: -webkit-sticky;
	position: sticky;
	top: 0;

	display: inline-block;
	width: 99%; /* This is bullshit */
}

#top-bar h1 {
	margin: 0;
	padding: 0;

	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);
	}
}