-
Notifications
You must be signed in to change notification settings - Fork 0
/
favorites_page_template.html
75 lines (66 loc) · 2.28 KB
/
favorites_page_template.html
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
<!DOCTYPE html>
<html>
<head>
<title>
Favoriten
</title>
<meta content="text/html;charset=utf-8" http-equiv="Content-type"/>
<style>
/* https://github.com/microsoft/vscode/blob/master/extensions/markdown-language-features/media/markdown.css */
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
body {
font-family: var(--vscode-markdown-font-family, -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", "Ubuntu", "Droid Sans", sans-serif);
font-size: var(--vscode-markdown-font-size, 14px);
padding: 0 26px;
line-height: var(--vscode-markdown-line-height, 22px);
word-wrap: break-word;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:focus,
input:focus,
select:focus,
textarea:focus {
outline: 1px solid -webkit-focus-ring-color;
outline-offset: -1px;
}
h1 {
padding-bottom: 0.3em;
line-height: 1.2;
border-bottom-width: 1px;
border-bottom-style: solid;
}
h1, h2, h3 {
font-weight: normal;
}
/* Set additional styling options for the columns */
.column {
float: left;
}
/* alternative zu left, middle, right, einfach immer das, dann fließen die passend nebeneinander*/
.floatingCol {
padding-right: 5%;
}
/* make a new line after each a tag (<a> ... </a>)*/
a:after {
content: "\A";
white-space: pre;
}
/* kein abstand nach unten*/
h4 {
margin-bottom: 0;
}
</style>
</head>
<body>
<div>
</div>
</body>
</html>