-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (82 loc) · 1.63 KB
/
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
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
@import url('https://fonts.googleapis.com/css2?family=Liberation+Sans+Narrow&family=M+PLUS+1m:wght@400;500&display=swap');
body {
font-family: 'Liberation Sans Narrow', 'Arial Narrow', sans-serif;
font-size: 16px;
max-width: 800px;
margin: 3rem auto;
padding: 1rem;
line-height: 1.5;
background-color: #fdfdfd;
color: #1a1a1a;
}
h1, h2, h3, h4 {
font-weight: 500;
border-bottom: 1px solid #ddd;
padding-bottom: 0.3em;
margin-top: 2.2em;
color: #333;
}
a {
color: #005fa3;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
pre, code {
font-family: 'M PLUS 1m', 'Courier New', monospace;
font-size: 0.90em;
background-color: #f5f5f5;
padding: 0.2em 0.4em;
border: 1px solid #ddd;
border-radius: 4px;
}
/*
code {
background-color: #eeeeee;
padding: 0.15em 0.4em;
border-radius: 4px;
font-size: 0.95em;
}
*/
pre {
padding: 1em;
overflow-x: auto;
margin: 1.5rem 0;
background: #f6f6f6;
border: 1px solid #ddd;
}
blockquote {
border-left: 4px solid #aaa;
padding-left: 1em;
color: #555;
font-style: italic;
margin: 1.5rem 0;
}
/* Grundstruktur für Tabellen */
table {
width: 100%;
border-collapse: collapse;
margin: 1.5em 0;
font-size: 0.95em;
}
/* Zellrahmen */
th, td {
border: 1px solid #ccc;
padding: 0.5em 0.8em;
text-align: left;
}
/* Erste Zeile (Kopfzeile): dunkleres Hellgrau */
thead th {
background-color: #ddd;
font-weight: bold;
}
/* Erste Spalte: helleres Hellgrau */
tbody td:first-child {
background-color: #f3f3f3;
font-weight: 500;
}
/* Optionale Zeilenhervorhebung beim Hover */
tbody tr:hover {
background-color: #f9f9f9;
}