summaryrefslogtreecommitdiff
path: root/blag/static/css/site.css
blob: 0da7274beb660c08fc9b3d09e50c69b53c61d0de (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
html, body {
    box-sizing: border-box;
    font: 13px Helvetica, Arial;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: -2.5em;
    width: 80%;
    background-color: #FDF6E3;
    color: #586E75;
    height: 94%;
}
a {
    color: #268BD2;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
blockquote {
    padding: 1em 1em;
    border-left: 5px solid #D33682;
    margin: 0 0 1em;
}
.post-meta {
    font-style: italic;
}
#header {
    display: block;
    height: 2em;
    overflow: visible;
    padding-right: 2em;
    padding-left: 0.7em;
    margin: auto;
}
#footer {
    height: 2.5em;
    padding: 1em 0;
    margin-left: 2em;
    border-width: 1px 0 0:
}
#header header a {
    font-size: 210%;
}
#header header a:hover {
    text-decoration: none;
}
#content {
    min-height: 100%;
    margin-bottom: -2.5em;
}
#content:after {
    content: "";
    display: block;
    height: 2.5em;
}
.fade {
    opacity: 0.5;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity: .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
}
.fade:hover {
    opacity: 1;
}
pre {
    padding: 9.5px;
    margin: 0 0 10px;
    word-break: break-all;
    word-wrap: break-word;
    color: #2b2b2b;
    background-color: #073642;
    border: 1px solid #073642;
    border-radius: 4px;
}
code {
    padding: 0.25em;
    font-family: DejaVu Sans Mono, Consolas;
    white-space: pre-wrap;
    border: 0;
    border-radius: 4px;
}
pre code {
    display: block;
    color: #657B83;
    background-color: #002B36;
}
.tags {
    display: inline-block;
    list-style: none;
    padding-left: 0;
    margin: 0 0 0 0.2em;
}
.tags li {
    display: inline-block;
    padding-left: 0.3em;
}
.tags li:nth-child(even) {
    color: #6C71C4;
}
.colleft {
    float: left;
    width: 70%;
    position: relative;
}
.colright {
    float: right;
    width: 30%;
    position: relative;
}
.embed-video {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}
figure {
    width: 75%;
    text-align: center;
    margin: auto;
}