Welcome to mirror list, hosted at ThFree Co, Russian Federation.

styles.css « css « static - github.com/lasseborly/anybodyhome.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca4621602f42346f0627668f4ebde3815c95bcc0 (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
@import 'https://fonts.googleapis.com/css?family=Lobster|Quicksand|Cutive+Mono';

body {
  width: 600px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Quicksand', sans-serif;
}

@media(max-width: 600px) {
  body {
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
  }
}

a {
  text-decoration: none;
  color: #336699;
}

a:visited {
  color: #000;
}

a:hover {
  color: #C0C0C0;
}

p {
  line-height: 1.4;
  text-align: justify;
}

section#header {
  margin: 40px 0;
}

section#header h1 {
  font-size: 2em;
  text-align: center;
  font-family: 'Lobster', cursive;
  font-size: 2em;
  margin: 0 0 9px 0;
}

section#header h2 {
  font-family: 'Cutive Mono', monospace;
  font-size: 0.8em;
  text-align: center;
}

section.summary {
  padding: 0 0 0 10px;
  border-left: 1px solid black;
  margin: 0 0 60px 0;
}

@media(max-width: 600px) {
  section.summary {
    padding: 0 0 0 0;
    border-left: 0px solid black;
  }
}

section.summary article {
  margin: 15px 0 0 0;
}

section h2 {
  font-size: 1.3em;
  font-family: 'Lobster', cursive;
}

section h2 a {
  color: #000;
}

section time {
  margin: 0 0 0 2px;
  font-size: 0.7em;
  font-weight: 600;
}

section article {
  margin: 15px 0 0 0;
}

section#paginator {
  margin: 0 0 140px 0;
  font-family: 'Lobster', cursive;
}

section#paginator #next {
  float: right;
}

#post {
  margin: 0 0 100px 0;
}