-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.css
114 lines (96 loc) · 1.6 KB
/
site.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
* {
box-sizing: border-box;
}
html {
font-family: Raleway, sans-serif;
}
html, body {
min-height: 100%;
margin: 0;
}
body.main {
color: #333333;
background-color: white;
background-image: url(img/bg.jpg);
background-repeat: no-repeat;
background-size: cover;
padding-top: 4rem;
padding-bottom: 4rem;
}
body.poetry {
color: #333333;
background-color: white;
background-image: url(img/bg.jpg);
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
padding-top: 4rem;
padding-bottom: 4rem;
}
p, ol, ul, dl, menu {
margin-top: 0;
margin-bottom: 1rem;
}
th, td {
text-align: left;
vertical-align: top;
}
th {
padding-right: 1rem;
}
a {
text-decoration: none;
color: #bb0a10;
}
a:hover {
text-decoration: underline;
}
h1, h2, h3, h4 {
margin-top: 0;
margin-bottom: 1rem;
font-family: Cinzel;
font-weight: 700;
}
h1::first-letter {
font-family: 'Cinzel Decorative';
}
header {
margin-bottom: 2rem;
}
.main article {
padding: 2rem;
font-size: 1.2rem;
background-color: white;
box-shadow: 0 0 20px #0000004a;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.poetry article {
padding: 2rem;
font-size: 1.2rem;
background-color: white;
box-shadow: 0 0 20px #0000004a;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.about-me {
margin-bottom: 2rem;
}
.poetry section {
margin-bottom: 12rem;
}
.text-right {
text-align: right;
}
@media (min-width: 700px) {
article {
border-radius: 5px;
}
}
@media (min-width: 1000px) {
.main article {
margin-right: 100px;
}
}