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: c145e675a3822e048d1ae4d301dfb4abac72aaa4 (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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
@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;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #000;
}

main {
  flex: 1;
}

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

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

a:visited {
  color: #333;
}

a:hover {
  color: #C0C0C0;
}

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

@media(max-device-width: 667px) {
  p {
    font-size: 3em;
  }
}


img {
  max-width: 100%;
}

section#header {
  margin: 40px 0;
}

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

@media(max-device-width: 667px) {
  section#header h1 {
    font-size: 6em;
    margin: 0 0 30px 0;
  }
}

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

@media(max-device-width: 667px) {
  section#header h2 {
    font-size: 1.5em;
  }
}

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

@media(max-device-width: 667px) {
  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;
}

@media(max-device-width: 667px) {
  section h2 {
    font-size: 4em;
    padding-bottom: 5px;
  }
}

section h2 a {
  color: #000;
}

section time {
  font-family: 'Cutive Mono', monospace;
  margin: 0 0 0 2px;
  font-size: 0.8em;
}

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

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

@media(max-device-width: 667px) {
  section#paginator {
    font-size: 5em;
    padding-bottom: 60px;
  }
}

section#paginator #next {
  float: right;
}

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

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
  margin: 10px;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}