Compare commits

...

2 Commits

Author SHA1 Message Date
a95f13943f CSS formatted
All checks were successful
Build and Deploy Zola Website / build_and_deploy (push) Successful in 16s
Build Zola Website / build (pull_request) Successful in 23s
2024-10-14 17:15:08 +02:00
7f23f234cd Changed ancher color 2024-10-14 17:13:49 +02:00
5 changed files with 33 additions and 27 deletions

View File

@ -11,6 +11,5 @@
p { p {
text-align: justify; text-align: justify;
} }
} }

View File

@ -19,24 +19,24 @@
} }
} }
code { code {
font-size: 1rem; font-size: 1rem;
}
ul {
list-style: none;
padding-left: 0;
li {
position: relative;
padding-left: 1rem;
} }
ul { li::before {
list-style: none; content: '';
padding-left: 0; position: absolute;
left: 0;
li { color:white;
position: relative;
padding-left: 1rem;
}
li::before {
content: '';
position: absolute;
left: 0;
color:white;
}
} }
}

View File

@ -22,4 +22,8 @@
} }
} }
a {
color: var(--color);
}
} }

View File

@ -50,11 +50,18 @@ nav {
color: var(--color); color: var(--color);
font-size: 1.3rem; font-size: 1.3rem;
} }
a {
color: var(--color);
}
} }
a {
color: lightblue;
cursor: pointer;
text-decoration: underline;
}
a { color: var(--color); }
a:visited { color: var(--color); }
a:hover { color: var(--a-hover); } a:hover { color: var(--a-hover); }
@media (min-width: 400px) { @media (min-width: 400px) {
@ -64,11 +71,6 @@ a:hover { color: var(--a-hover); }
} }
} }
/*
.content {
padding: 2rem 1rem;
}
*/
footer { footer {
display: flex; display: flex;
width: 100vw; width: 100vw;

View File

@ -12,3 +12,4 @@
--color: var(--c-white); --color: var(--c-white);
--background: var(--c-gray); --background: var(--c-gray);
} }