blob: 588ab529d247925c205cd8e2e201327a8274cfd8 (
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
|
* {
margin: 0;
padding: 0;
}
body {
font-family: 'Droid Serif', serif;
background: #171717;
color: #dfdfdf;
}
/*
position: absolute;
*/
header {
margin-top: 9%;
width: 100%;
background: #efefef;
color: #171717;
padding: 2em 0 0.01em;
text-align: center;
}
header p {
font-size: 3em;
}
.post {
margin-top: 20px;
color: #1f1f1f;
}
ul {
text-align: center;
}
li {
list-style: none; line-height: 3em;
}
a {
color: inherit;
text-decoration: none;
font-size: 2em;
}
a:hover {
text-decoration: underline;
color: #fff;
text-shadow: 0 0 5px white;
transition: text-shadow 1s;
}
.button {
color: #fff;
}
.button:hover {
color:#efefef;
}
.center {
text-align: center;
}
.journal {
background-color: #efefef;
color: #1f1f1f;
margin-top: 50px;
border: 1px solid #e0e0e0;
box-shadow: 0 0 2px #ddd;
width: 100%;
padding: 15px 0 0 ;
}
.article {
text-align: left;
padding: 15px 15px 40px 15px;
}
.main {
margin-top: 50px;
text-align: center;
}
.black-link {
font-size: 1.3em;
}
.black-link:hover {
color: inherit;
text-decoration: underline;
text-shadow: 0 0 2px #1f1f1f;
transition: text-shadow 1s;
}
.header-link {
font-size: inherit;
}
.header-link:hover {
text-decoration: none;
text-shadow: 0 0 5px #1f1f1f;
}
.meta {
color: #3f3f3f;
font-size: 0.8em;
text-align: right;
}
.journal-li {
line-height: inherit;
}
.margin-top {
margin-top: 20px;
}
.margin-top-small {
margin-top: 10px;
}
/* Für projects/, damit der Text nicht überlappt, aber nah beieinander steht. */
@media (min-width: 755px) {
.text-right {
text-align: right;
}
.text-left{
text-align: left;
}
}
|