aboutsummaryrefslogtreecommitdiffstats
path: root/src/css/style.css
blob: 8b55f19430d27616b3b2b970528d63cd4330a006 (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
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  color: #333;
  margin: 1em auto 2em auto;
  max-width: 43em;
  padding: 0 1em;
  font-family: "PT Sans", "Myriad Pro", "Trebuchet MS", Helvetica, sans-serif;
}

a {
  color: #0074D9
}

a:visited {
  color: #941352
}

blockquote {
  border-left: 3px solid #ccc;
  padding-left: 10px;
}

dt {
  font-weight: bold;
}

header .subtitle {
  margin-top: -1em;
  margin-bottom: 21.44px;
}

.bloglist p:nth-of-type(2) {
  margin-top: -8px;
}

header .date {
  font-style: italic;
  margin-bottom: 21.44px;
}

footer .date {
  float: right;
}

footer {
  font-style: italic;
  font-size: 14px;
  margin-top: 32px;
}

.logo {
  float: right;
  border-radius: 50%;
  width: 150px;
  height: 150px;
}

@media only screen and (max-device-width : 667px) {
  .logo {
    max-width: 66px;
  }

  footer .date {
    float: none;
  }
}

@media print {
  .navbar {
    display: none !important;
  }
}

pre {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: monospace;
  line-height: 1.2;
  padding: 8px;
  white-space: pre;
  word-wrap: normal;
}

.sourceCode {
  overflow: auto;
}

details {
  font-size: 87.5%;
  margin: 0 1em;
}

.redacted {
  background: black;
  color: black;
  cursor: default;
}

.right {
  float: right;
}