aboutsummaryrefslogtreecommitdiff
path: root/static/main.css
blob: 33240b8939d37c0dc8c7928b207987361f32d875 (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
/* * { */
/*     outline: black 1px solid; */
/* } */

body {
    background: #fafafa; /* There's fa and there's antifa! */
}

a {
    text-decoration: none;
    color: #444;
}

a:hover, a:active {
    text-decoration: underline;
}

.container hr {
    border: 1px solid #343434;
    width: 100%;
}

.container {
    display: grid;
    max-width: 120ch;
    margin: 2em;
}

.tagline-container {
    display: grid;
    grid-template-columns: 1fr 8fr 1fr;
    grid-auto-flow: column;
    align-items: center;
}

.tagline-container > h1, .tagline-container > p {
    margin: 0;
}

.starbox {
    grid-row-start: 1;
    grid-row-end: 3;
    grid-gap: 0.5em;
    display: flex;
    flex-direction: column;
}

.repo-logo {
    justify-self: center;
    align-self: center;
    grid-row-start: 1;
    grid-row-end: 3;
    max-width:230px;
    max-height:100px;
}

.subheader {
    padding-top: 1em;
    align-items: center;
    justify-items: center;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    
}

.repo-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background: #DDD;
}

.repo-navigation > .nav-item {
    padding: 0.25em 2em;
}