-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
125 lines (121 loc) · 1.93 KB
/
Copy pathstyle.css
File metadata and controls
125 lines (121 loc) · 1.93 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
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
114
115
116
117
118
119
120
121
122
123
124
125
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@1,300&family=Open+Sans:wght@300&display=swap");
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
font-family: "Open Sans", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "'Nunito Sans', sans-serif;";
font-weight: normal;
}
h2 {
font-size: 2rem;
color: #a51f10;
margin: 0;
}
a {
color: royalblue;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.posted {
font-size: 0.8rem;
color: #89a611;
}
.wrapper {
width: 80%;
margin: 0 auto;
}
header {
display: flex;
flex-flow: row nowrap;
justify-content: center;
}
.leftheader {
flex-basis: 50%;
text-align: right;
padding-right: 0.5rem;
margin-left: 4rem;
}
.rightheader h1 {
margin: 0;
color: #b69457;
font-size: 4rem;
}
.rightheader p {
font-family: "Open Sans", sans-serif;
margin: -0.5rem;
margin-left: 0.2rem;
}
.rightheader {
flex-basis: 50%;
margin-top: 4rem;
padding-left: 0.5rem;
margin-right: 4rem;
}
nav {
border-top: 3px solid #383643;
border-bottom: 3px solid #383643;
}
nav ul {
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
}
nav li {
display: inline-block;
}
nav a {
text-decoration: none;
color: #73352e;
display: block;
padding: 0.5rem 1rem;
}
nav a:hover {
background-color: black;
color: #b69457;
}
section {
border-bottom: 3px solid #383643;
margin-bottom: 0.5rem;
}
article {
margin: 2rem 0;
}
article img {
float: left;
margin: 0 1rem 1rem 0;
border-radius: 1rem;
}
article::after {
content: "";
display: table;
clear: both;
}
footer {
border-top: 3px solid #383643;
text-align: center;
font-size: 0.8rem;
}
footer ul {
margin: 0;
padding: 0;
list-style-type: none;
}
footer ul li {
display: inline-block;
}