summaryrefslogtreecommitdiffstats
path: root/site/style/main.css
blob: e58b93320ef8d21e76809636ec31a1e51a902e9d (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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
* {
  box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-size: 100%;
    background: #29222E;
    color: #E0CEED;
    font-family: 'et-book', serif;
}

h1, h2, h3, h4, h5, a[href] {
    color: #68d3a7;
}

h1, h2, h3, h4, h5 {
    font-family: sans-serif;
}

h1 {
    text-align: center;
}

/* default */

body#default nav {
    padding-top: 1em;
    padding-bottom: 1em;
    width: 100%;
}

body#default nav ul {
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style-type: none;
}

body#default nav li {
    padding-left: .5em;
    padding-right: .5em;
    text-transform: uppercase;
    font-family: sans-serif;
    font-size: 130%;
}

body#default nav li a {
    text-decoration: none;
}

body#default header {
    text-align: center;
}

body#default img {
    text-align: center;
    border: 3px solid #68d3a7;
    border-radius: 50%;
    width: 125px;
}

body#default main {
    max-width: 500px;
    margin: auto;
    padding: 0em 1em 1em 1em;
    font-size: 130%;
    overflow-x: hidden;
}

/* coqdoc output */

body#default main .code, code, pre, .inlinecode {
    font-family: 'Fira Code', monospace;
    font-size: 75%;
}

body#default main div.code {
    white-space: nowrap;
}

body#default main .code {
    overflow-x: visible;
}

body#default main .code a[href] {
    text-decoration: none;
}

body#default main .doc {
}

body#default main .paragraph {
    margin-top: 1em;
    margin-bottom: 1em;
}

/* org-mode output */

.footpara {
    display: inline;
    margin-left: .2em;
}

/* index */

ul#index {
    padding-left: 20px;
}

ul#index .date {
    font-size: 75%;
}

/* VCARD (index.html) */

body#vcard {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 125%;
}

body#vcard article {
    max-width: 400px;
    width: 80%;
    margin: auto;
}

body#vcard article img {
    display: block;
    border: 3px solid #68d3a7;
    border-radius: 50%;
    width: 175px;
    margin: auto;
    margin-bottom: 3em;
}

body#vcard h1 {
    color: #68d3a7;
    font-size: 300%;
    text-align: center;
}

body#vcard nav dt {
    font-weight: bold;
}

body#vcard nav dd {
}

body#vcard nav dt a {
    color: #68d3a7;
}