summaryrefslogtreecommitdiff
path: root/css/main.css
blob: d71ea47d4494b1f328b68f5583387f38149102f4 (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
body, h1, h2, h3, h4, h5, h6, p, li, ol, ul, blockquote, code, pre {
  margin: 0;
  padding: 0;
  color: #444444;
  font-size: 14px;
  font-family: "PT Serif", Georgia, serif;
  -webkit-font-smoothing: antialiased; }

body {
  background: rgb(185,179,162) url("images/bg.png");
  background: -webkit-radial-gradient(
    center center,
    ellipse contain,
    rgba(255,255,255,1),
    rgba(255,255,255,0))
  , url("images/bg.png");
}

h1 {
  margin: 36px 0 0;
  text-align: center;
  font: italic 1.8em normal "Baskerville", "PT Serif", Georgia, serif; }

a {
  text-decoration: none;
  color: #000;
  opacity: .3;
}
a:before {
  content: "†";
  margin-right: .3em;
  font-weight: bold;
  -webkit-transition-duration: .2s;
}
a:hover {
  -webkit-transform: scale(1.1);
  opacity: 1;
}

p, li {
  line-height: 18px; }

h2 {
  line-height: 18px;
  margin-top: 18px; }

p + p {
  text-indent: 1.4em; }

p, ul, ol, pre {
  margin-top: 1em;
}

p code, li code { font-size: 85%; background: #ddd; }

blockquote {
  margin: 18px;
  font-style: italic;
}

pre, code {
  font-family: Monaco, Menlo, DejaVu Sans Mono, monospace;
  font-size: 93%;
}

pre { padding: 0 .1em; }

pre code { color: rgb(130,146,148) }

aside {
  text-align: right; }
  aside p, aside li {
    font-size: 12px;
    margin-top: 3px;
    line-height: 15px; }

#bucket {
  background: rgba(255,255,255,.8);
  width: 480px;
  margin: 120px auto;
  padding: 35px;
  box-sizing: border-box;
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 5px 5px rgba(0, 0, 0, 0.45); }

#logo {
  background: url("images/logo.png") no-repeat center;
  height: 54px;
  margin: 20px 0 0 0px;
  text-indent: -9999px; }

#slogan {
  text-align: center;
  color: rgba(0,0,0,.3);
  margin-top: 0.2em;
  margin-bottom: 4em;
}