Compare commits

..

No commits in common. "a95f13943f32c0f5580ff80301f69a2ab549bf7b" and "b227a41a439f10291a676aa2b89cb91caa55da67" have entirely different histories.

5 changed files with 28 additions and 34 deletions

View File

@ -7,9 +7,10 @@
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;
} }
li::before { ul {
content: ''; list-style: none;
position: absolute; padding-left: 0;
left: 0;
color:white; li {
} position: relative;
} padding-left: 1rem;
}
li::before {
content: '';
position: absolute;
left: 0;
color:white;
}
}

View File

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

View File

@ -50,18 +50,11 @@ 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) {
@ -71,6 +64,11 @@ a:hover { color: var(--a-hover); }
} }
} }
/*
.content {
padding: 2rem 1rem;
}
*/
footer { footer {
display: flex; display: flex;
width: 100vw; width: 100vw;

View File

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