-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
64 lines (57 loc) · 915 Bytes
/
style.css
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
h1, h2, h3 {
font-family: sans-serif;
}
a {
font-weight: bold;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
@media screen and (min-width: 15cm) {
body {
margin-right: auto;
padding-left: 8mm;
padding-right: 8mm;
}
section {
max-width: 40em;
}
hr {
max-width: 40em;
margin-left: 0;
}
#neu {
float: right;
width: 260px;
height:490px;
}
}
@media not screen and (min-width: 15cm) {
#neu {
float: right;
width: 104px;
height:196px;
}
}
#demo-code {
float: left;
}
#intro {
font-size: 1.17em;
}
#demo-code {
border: 1px solid lightgray;
background: #f9f9f9;
padding: 8px;
margin-bottom: 10px;
}
.code {
font-family: monospace;
white-space: pre;
}
.code .comment { color: #008800; }
.code .string { color: #2552b1; }
.code .keyword { color: #aa0f90; }
.entries div { display: flex; }
.entrydate { width: 6em; text-align; right; flex-shrink: 0; }