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

This commit is contained in:
Filip Rojek 2024-10-14 17:15:08 +02:00
parent 7f23f234cd
commit a95f13943f
5 changed files with 26 additions and 33 deletions

View File

@ -7,10 +7,9 @@
margin-top: .5rem; margin-top: .5rem;
margin-bottom: .5rem; margin-bottom: .5rem;
} }
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

@ -26,3 +26,4 @@
color: var(--color); color: var(--color);
} }
} }

View File

@ -56,15 +56,12 @@ nav {
} }
} }
a {
color: lightblue;
cursor: pointer;
text-decoration: underline;
}
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) {
@ -74,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);
} }