summaryrefslogtreecommitdiffstats
path: root/style.css
blob: 759b9fbdc6cc83c8fdcfcb9dcb11704826a4b82c (plain) (blame)
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
.wrapper {
    display: grid;
    height: 200px;
    grid-template-columns: 1fr 3fr 1fr;
    gap: 10px;
}

@font-face {
	font-family: 'OpenSans';	
	src: url(OpenSans-VariableFont_wdth,wght.ttf);
}

* {
    font-size: 14pt;
    font-family: 'OpenSans';
}

header {
	padding-left: 10px;
    max-width: fit-content;
    margin-left: auto;	
    margin-right: auto;	
    margin-top: 100px;
}

.inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.jumplist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

h1 {
    color: green;
	font-size: 2.4em;
}

.child {
    background: white;
    padding: 1.2em;
}

.objectpic {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}