52 lines
721 B
CSS
52 lines
721 B
CSS
|
:root {
|
||
|
--link-color: #00755e;
|
||
|
--visited-color: #00755e;
|
||
|
}
|
||
|
|
||
|
html {
|
||
|
font-family: sans-serif;
|
||
|
size: 12px;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
width: 80%;
|
||
|
max-width: 1024px;
|
||
|
margin: auto;
|
||
|
background-color: #fdf6e3 !important;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
text-align: center;
|
||
|
margin-top: 4em;
|
||
|
padding-bottom: 1em;
|
||
|
}
|
||
|
|
||
|
|
||
|
a {
|
||
|
text-decoration: none;
|
||
|
font-weight: bold;
|
||
|
color: var(--link-color);
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
margin-top: 1.5em;
|
||
|
}
|
||
|
|
||
|
h2:after {
|
||
|
content: "";
|
||
|
background-image: url("https://ag-link.xyz/assets/img/connection.png");
|
||
|
background-size: contain;
|
||
|
width: .75em;
|
||
|
height: .75em;
|
||
|
display: inline-block;
|
||
|
margin-left: .3em;
|
||
|
}
|
||
|
|
||
|
li {
|
||
|
padding: 0.5em 0 0 0;
|
||
|
}
|
||
|
|
||
|
li li {
|
||
|
padding: 0;
|
||
|
}
|