-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstarter-template.css
91 lines (75 loc) · 1.53 KB
/
starter-template.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
@font-face {
font-family: 'Minecraft-Regular';
src:url('Minecraft-Regular.ttf.woff') format('woff'),
url('Minecraft-Regular.ttf.svg#Minecraft-Regular') format('svg'),
url('Minecraft-Regular.ttf.eot'),
url('Minecraft-Regular.ttf.eot?#iefix') format('embedded-opentype');
font-weight: normal;
font-style: normal;
}
* {
font-family: 'Minecraft-Regular', Fallback, sans-serif;
}
body {
padding-top: 5rem;
}
h1, h2, h3, h4, h5, h6 {
padding-top: 10px;
padding-bottom: 10px;
}
p, code {
padding-top: 10px;
padding-bottom: 10px;
}
.starter-template {
text-align: center;
}
.page-element {
padding-top: 60px;
padding-bottom: 80px;
padding-left: 20%;
padding-right: 20%;
}
.page-element:after {
content: "";
display: block;
position: absolute;
width: 100%;
height: 80px;
padding: 0;
margin: 0;
left: 0;
background-image: url(thin.png);
background-repeat: no-repeat;
background-position: left bottom;
}
.page-element:nth-child(odd):after {
content: "";
display: block;
position: absolute;
width: 100%;
height: 80px;
padding: 0;
margin: 0;
left: 0;
background-image: url(thin.png);
background-repeat: no-repeat;
background-position: right bottom;
}
.blue-bg {
background-color: #346896;
}
.blue-bg a:link, .blue-bg a:visited {
color: orange;
}
.black-bg {
background-color: #353535;
color: white;
}
.cite-div {
margin: 5px;
padding: 5px;
border: 2px dashed black;
background-color: light-green;
color: black;
}