2022-04-07 15:52:18 +00:00
|
|
|
h1,h2,h3,h4,h5,h6 {
|
|
|
|
@extend %headings !optional;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
background-color: rgb(18, 20, 21);
|
|
|
|
color: lime;
|
|
|
|
}
|
|
|
|
|
2022-05-02 18:12:56 +00:00
|
|
|
footer {
|
|
|
|
padding: 1rem 3rem;
|
|
|
|
}
|
|
|
|
|
2022-06-07 13:54:07 +00:00
|
|
|
figure {
|
|
|
|
figcaption {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-07 15:52:18 +00:00
|
|
|
#content {
|
|
|
|
main {
|
|
|
|
background-color: rgb(24, 26, 27);
|
|
|
|
margin: 3% 10%;
|
|
|
|
padding: 3%;
|
2022-06-07 13:54:07 +00:00
|
|
|
article {
|
2022-06-10 15:35:31 +00:00
|
|
|
max-width: 90%;
|
2022-06-07 13:54:07 +00:00
|
|
|
}
|
2022-04-07 15:52:18 +00:00
|
|
|
}
|
|
|
|
a:hover %headings {
|
|
|
|
text-decoration: underline;
|
2022-05-02 15:11:40 +00:00
|
|
|
color: cyan;
|
2022-04-07 15:52:18 +00:00
|
|
|
}
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
2022-05-02 15:11:40 +00:00
|
|
|
color: cyan;
|
|
|
|
}
|
|
|
|
a li {
|
2022-04-07 15:52:18 +00:00
|
|
|
color: lime;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#navbar {
|
|
|
|
background-color: #222;
|
|
|
|
li a:hover {
|
|
|
|
background-color: #333;
|
|
|
|
}
|
|
|
|
.link-group li {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
li {
|
|
|
|
display: inline;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
ul {
|
|
|
|
list-style-type: none;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
text-align: center;
|
|
|
|
padding: 14px 16px;
|
|
|
|
display: block;
|
|
|
|
color: lime;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#lang-menu {
|
|
|
|
ul {
|
|
|
|
background-color: #222;
|
|
|
|
position: absolute;
|
|
|
|
display: none;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#lang-menu:hover ul {
|
|
|
|
display: block;
|
|
|
|
}
|