aboutsummaryrefslogtreecommitdiff
path: root/static/main.css
blob: cea0eb1442b053a5e4e283aeff66d1369db6cf14 (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/* * { */
/*     outline: black 1px solid; */
/* } */

body {
    background: #fafafa; /* There's fa and there's antifa! */
    font-family: monospace;
}
    
.tagline-container h1 {
    font-size: 2.5em;
}

.tagline-container p {
    font-size: 1.25em;
}

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

.subheader a, .repo-navigation a {
    font-family: monospace;
    font-size: 1.5em;
}

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

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

.container {
    display: grid;
    max-width: 200ch;
    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;
    padding-right: 1em;
}

.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: #55EEFF; */
}

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

.repo-navigation > .nav-active {
    background: #EEE;
    border: #333 1px solid;
}

.readme {
    padding-top: 5ch;
    padding-left: 25ch;
    font-size: 1.25em;
}

.details-table {
    padding: 5ch 15ch;
    font-size: 1.25em;
    text-align: left;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 4fr repeat(3, 1fr);
    align-content: center; 
    justify-content: center;
    
    padding: 5ch 15ch;
    font-size: 1.2em;
}

.details-grid .divider {
    padding: 5ch 0;
    grid-column-start: 1;
    grid-column-end: 6;
}

.details-grid > .details-span {
    grid-column-start: 4;
    grid-column-end: 6;
}

.details-grid p, .details-grid a {
    padding: 0;
    margin: 1px;
}