Coding_Art_KEW_22/website/style.css

52 lines
720 B
CSS
Raw Normal View History

2022-09-11 13:18:18 +00:00
:root {
--link-color: #00755e;
--visited-color: #00755e;
}
2022-09-11 08:33:20 +00:00
html {
2022-09-11 13:18:18 +00:00
font-family: sans-serif;
size: 12px;
}
body {
width: 80%;
2022-10-11 12:03:02 +00:00
max-width: 800px;
2022-09-11 13:18:18 +00:00
margin: auto;
2022-09-11 08:33:20 +00:00
background-color: #fdf6e3 !important;
}
footer {
text-align: center;
2022-10-07 11:54:45 +00:00
margin-top: 4em;
padding-bottom: 1em;
2022-09-11 08:33:20 +00:00
}
2022-09-11 13:18:18 +00:00
a {
text-decoration: none;
font-weight: bold;
color: var(--link-color);
}
2022-10-07 11:54:45 +00:00
h2 {
margin-top: 1.5em;
}
2022-09-11 13:18:18 +00:00
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;
}
2022-10-07 11:54:45 +00:00
li {
padding: 0.5em 0 0 0;
}
li li {
padding: 0;
}