forked from stellwerke-info/tile_cache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
82 lines (70 loc) · 1.42 KB
/
Copy pathstyles.css
File metadata and controls
82 lines (70 loc) · 1.42 KB
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
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: table;
font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, Ubuntu, roboto, noto, segoe ui, arial, sans-serif;
font-weight: 300;
color: #e3e6e8;
/*
* To change image, adjust url and set focus with background-position!
*/
background: #2C2D27 url(img/bg.jpg) no-repeat center center fixed;
background-size: cover;
background-position: right;
}
#container {
display: table-cell;
text-align: center;
vertical-align: middle;
transition: opacity 100ms linear;
}
#content {
display: inline-block;
text-align: center;
background-color: #222;
padding: 10px;
opacity: 0.9;
}
#content h1 {
margin-top: 0;
margin-bottom: 0;
font-weight: 400;
}
#content h2 {
margin-top: 0;
margin-bottom: 0;
font-weight: 400;
}
ul {
list-style-type: none;
margin: 0px;
padding:10px;
}
li.spacer {
display: block;
height: 5px;
}
a {
text-decoration: none;
border-bottom: 1px dotted #D5D9DC;
color: #D5D9DC;
}
a:hover {
border-bottom: 1px solid #D5D9DC;
}
a.button {
display:block;
background-color: #222;
margin: 5px;
padding: 5px 35px;
border: 1px solid #D5D9DC;
transition: background-color 250ms linear;
}
a.button:hover {
background-color: black;
}
.meta {
font-size: 70%;
}