about summary refs log tree commit diff
path: root/users/fcuny/blog/static/css/custom.css
blob: cbeac27ff0e142dc1c0e9df1bbf8aca52271aca6 (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
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
body {
    font-family: sans-serif;
    line-height:1.6;
    font-size:18px;
    color: #000111;
    background-color: #fbf1c7;
    margin:1em auto;
    max-width:750px;
    padding:0 0.55em;
}

h1, h2, h3, h4, h5 {line-height:1.2}
h1{margin-top:1em;margin-bottom:0.34em}
h2{margin-top:1.25em;margin-bottom:0.41em}
h3{margin-top:1.5em;margin-bottom:0.5em}

hr{
    color:#000111;
    background-color:#000111;
    border:none;
    height:2px
}

a {color: #494d7e;}
a:visited {color: #494d7e;}

span.published, span.updated {
    display: center;
    font-style: oblique;
}

code {
    font-family: monospace;
    font-size: 80%;
}
code.verbatim {
    background-color: #fffff8;
}

:not(pre) code{
    padding-left:0.1em;
    padding-right:0.1em;
    border-radius:2px;
}

.highlight pre {background-color: #fffff8 !important}
.highlight {border-radius: 5px}

pre {
    font-family: monospace;
    padding: 0.3rem 0.3rem;
    margin: 0;
    line-height: 1.1;
    overflow-x: auto;
    border: 1px solid #000;
}

.meta_tags {
    border-radius: 8px;
    padding: 0 .5rem;
    font-size: 80%;
    border: 2px solid #eee;
    background-color: #eee;
}

.meta_tags a:link, .meta_tags a:visited {
    text-decoration: none;
}

.meta_date {
    font-style: italic;
    font-size: 80%;
}

table {
    width: 100%;
    border-spacing: 0px;
    outline: none;
}

th, td{
    padding-left:0.7em;
    padding-right:0.7em;
    padding-top:0.4em;
    padding-bottom:0.4em;
}

table, th, td {
    border:1px solid black;
}

blockquote {
    background-color: #fffff8;
    border-radius: 5px;
    font-style: italic;
    border-left: 6px solid black;
    margin-left: 10.875px;
}

nav.menu {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0 auto;
}

.menu-item {
    padding-right: 8px;
}

.toc {
    border: 1px solid black;
    padding: 1rem;
    margin-top: 1rem;
    color: black;
}