2024-08-24 22:22:25 +02:00
|
|
|
a {
|
|
|
|
&:link {
|
|
|
|
color: green;
|
|
|
|
}
|
|
|
|
&:visited {
|
|
|
|
color: darkgreen;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
color: lightgreen;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
main{
|
2024-08-24 13:31:09 +02:00
|
|
|
a {
|
2024-08-24 22:22:25 +02:00
|
|
|
&:link {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nav {
|
|
|
|
a {
|
|
|
|
&:link {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2024-08-24 13:31:09 +02:00
|
|
|
}
|
2024-08-24 22:38:17 +02:00
|
|
|
p > code, a > code {
|
|
|
|
background: lightgrey;
|
|
|
|
padding: 2px;
|
|
|
|
border-radius:5px;
|
|
|
|
}
|
2024-08-24 13:31:09 +02:00
|
|
|
}
|
2024-08-24 22:22:25 +02:00
|
|
|
footer {
|
|
|
|
padding:1rem;
|
|
|
|
text-align:right;
|
|
|
|
}
|
|
|
|
|