2021-04-14 05:25:01 +00:00
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#toggle-description {
|
|
|
|
position: fixed;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
margin: 0.75em;
|
|
|
|
font-size: 1.5em;
|
|
|
|
width: 1em;
|
|
|
|
height: 1em;
|
|
|
|
border-radius: 50%;
|
|
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
|
|
padding: 0.5em;
|
|
|
|
transition: all 0.25s ease-in-out;
|
|
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.6);
|
2021-05-05 17:43:43 +00:00
|
|
|
z-index: 10;
|
2021-04-14 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
2021-05-05 17:43:43 +00:00
|
|
|
#toggle-description:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
box-shadow: 4px 4px 8px 0 rgba(255, 255, 255, 0.3), -4px -4px 8px 0 rgba(255, 255, 255, 0.3);
|
|
|
|
}
|
2021-04-14 05:25:01 +00:00
|
|
|
|
|
|
|
#toggle-description:hover, #toggle-description.active {
|
|
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
2022-02-01 04:01:07 +00:00
|
|
|
#header {
|
2021-04-14 05:25:01 +00:00
|
|
|
font-variant: small-caps;
|
2022-02-01 04:01:07 +00:00
|
|
|
text-shadow: 3px 3px 5px #000;
|
|
|
|
text-align: left;
|
2021-04-14 05:25:01 +00:00
|
|
|
margin-bottom: 2em;
|
|
|
|
margin-top: 1em;
|
2022-02-01 04:01:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#header h1 {
|
|
|
|
border-bottom-style: solid;
|
2021-04-14 05:25:01 +00:00
|
|
|
padding-bottom: 1em;
|
2022-02-01 04:01:07 +00:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: 75%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header p {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2021-04-14 05:25:01 +00:00
|
|
|
width: 75%;
|
2021-05-05 17:43:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#header span {
|
|
|
|
float: right;
|
|
|
|
text-align: right;
|
|
|
|
font-size: 0.75em;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header span a {
|
|
|
|
margin-left: 1em;
|
2021-04-14 05:25:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
|
|
|
text-align: center;
|
|
|
|
max-width: 90%;
|
|
|
|
left: 50%;
|
|
|
|
width: 65em;
|
|
|
|
transform: translate(-50%, 0);
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
.article {
|
2021-05-05 17:43:43 +00:00
|
|
|
height: 14em;
|
2021-04-14 05:25:01 +00:00
|
|
|
|
|
|
|
margin-bottom: 2em;
|
2021-05-05 17:43:43 +00:00
|
|
|
border-radius: 7em;
|
2021-04-14 05:25:01 +00:00
|
|
|
border-style: none;
|
|
|
|
border-color: rgba(0, 0, 0, 0);
|
|
|
|
border-width: 5px;
|
|
|
|
|
|
|
|
transition: all 0.25s ease-in-out;
|
|
|
|
|
|
|
|
color: rgba(0, 0, 0, 0);
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.6);
|
|
|
|
}
|
|
|
|
|
|
|
|
.article:hover, .primary-text {
|
|
|
|
color: rgba(255, 255, 255, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.article:hover {
|
|
|
|
box-shadow: 4px 4px 8px 0 rgba(255, 255, 255, 0.3), -4px -4px 8px 0 rgba(255, 255, 255, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
.article-banner {
|
|
|
|
background-position: center center;
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
2021-05-05 17:43:43 +00:00
|
|
|
border-radius: 7em;
|
2021-04-14 05:25:01 +00:00
|
|
|
outline-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.article-content {
|
2021-05-05 17:43:43 +00:00
|
|
|
height: 14em;
|
2021-04-14 05:25:01 +00:00
|
|
|
overflow: hidden;
|
|
|
|
transition: all 0.25s ease-in-out;
|
|
|
|
display: block;
|
|
|
|
padding-left: 4em;
|
|
|
|
padding-right: 4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.article-content:hover, .primary-text .article-content {
|
|
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
|
|
text-shadow: 5px 5px 8px #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.article-content h2 {
|
|
|
|
text-transform: capitalize;
|
2021-05-05 17:43:43 +00:00
|
|
|
margin-top: 3em;
|
2021-04-14 05:25:01 +00:00
|
|
|
margin-bottom: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.article-content p {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.article-content i {
|
|
|
|
margin-left: 1em;
|
|
|
|
margin-right: 0.7em;
|
|
|
|
}
|
2022-02-01 04:01:07 +00:00
|
|
|
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
|
|
h1 { font-size: 1.5rem; }
|
|
|
|
|
|
|
|
h2 { font-size: 1.25rem; }
|
|
|
|
|
|
|
|
p { font-size: 0.9rem; }
|
|
|
|
|
|
|
|
#toggle-description { font-size: 1.25rem; }
|
|
|
|
|
|
|
|
.article {
|
|
|
|
border-radius: 3em;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.article-banner {
|
|
|
|
border-radius: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.article-content {
|
|
|
|
padding-left: 2em;
|
|
|
|
padding-right: 2em;
|
|
|
|
}
|
|
|
|
}
|