108 lines
1.3 KiB
CSS
108 lines
1.3 KiB
CSS
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
header a{
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 2em;
|
|
line-height: initial;
|
|
}
|
|
|
|
#site-subtitle {
|
|
text-align: center;
|
|
font-size: 1em;
|
|
}
|
|
|
|
#flex-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
#content {
|
|
padding-left: 10%;
|
|
padding-right: 10%;
|
|
max-width: 50%;
|
|
font-size: 1.5em;
|
|
line-height: 35px;
|
|
|
|
text-align: justify;
|
|
text-justify: auto;
|
|
}
|
|
|
|
#about {
|
|
text-align: center;
|
|
}
|
|
|
|
.entry-title {
|
|
text-align: center;
|
|
}
|
|
|
|
.footnote {
|
|
font-size: .7em;
|
|
}
|
|
|
|
.footnote li::marker {
|
|
color: black;
|
|
}
|
|
|
|
nav {
|
|
max-width: 40%;
|
|
padding-right: 10%;
|
|
font-size: 1.2em;
|
|
line-height: 35px;
|
|
}
|
|
|
|
nav a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
footer {
|
|
padding: 50px;
|
|
}
|
|
|
|
.pa a {
|
|
color: white;
|
|
}
|
|
|
|
/* Responsive layout - makes a one column layout instead of a two-column layout */
|
|
@media (max-width: 900px) {
|
|
#flex-container {
|
|
flex-direction: column;
|
|
}
|
|
|
|
#content {
|
|
max-width: 100%;
|
|
text-align: left;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.7em;
|
|
}
|
|
|
|
nav {
|
|
max-width: 100%;
|
|
padding-left: 10%;
|
|
padding-right: 10%;
|
|
}
|
|
|
|
a {
|
|
color: black;
|
|
text-decoration: underline;
|
|
text-decoration-style: dotted;
|
|
}
|
|
|
|
nav li {
|
|
margin: 1em;
|
|
}
|
|
|
|
h2, h3 {
|
|
word-break: break-word;
|
|
hyphens: auto;
|
|
}
|
|
}
|