summaryrefslogtreecommitdiff
path: root/assets/main.css
blob: db00af8066b08e2b4e1352430eda0ecf9815a940 (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
ul {
    list-style: circle;
}

.light {
    color: #666;
}

.light a {
    color: #666 !important;
}

.light a:hover {
    color: #222;
}

/* for making all content within a row be vertically centered */
.row-vertically-centered .columns {
   display: inline-block;
   float: none;
   margin-left: 0;
   vertical-align: middle;
}

#title-header  {
    border-bottom: 1px solid #666;
    padding-top: 2rem;
    padding-bottom:2rem;
}

#title-header .title {
    margin: 0;
    font-weight: bold;
}

#title-header .title a {
    color: #222;
    text-decoration: none;
}

#title-header .social .spaced {
    text-decoration: none;
    margin-right: 0.5em;
}

#crypto-display {
    margin-right: 2rem;
}

/* the qr library uses a canvas to generate the qr code then base64's it into a
 * separate img tag. For an instant the original canvas shows though, creating
 * an annoying visual, so this ensures that that doesn't happen. */
#crypto-display-qr canvas {
    display: none;
}

#crypto-display-qr img {
    width: 100%;
}

#crypto-display-addr {
    word-wrap: break-word;
    margin-top: 1em;
}

#crypto-display-x {
    text-align: center;
    margin-top: 1em;
}

#crypto-display-x span:hover {
    cursor: pointer;
    font-weight: bold;
}

#crypto-display-x span {
    cursor: pointer;
}

#posts-list {
    margin-top: 3rem;
    list-style: none;
}

#posts-list h2 {
    margin: 0;
}

#posts-list h2 a {
    color: #222;
    text-decoration: none;
}

#post-header {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

#post-headline {
    margin: 0;
}

#post-content ul {
    margin-left: 1em;
}