add update cards elements

This commit is contained in:
Alexander Navarro 2023-08-20 13:53:21 -04:00
parent b89096cbe6
commit b187c50fb1
5 changed files with 112 additions and 68 deletions

View file

@ -12,6 +12,7 @@ html {
body {
max-width: 95vw; /* leave some space in the end by default */
margin: auto;
padding: 15px 0;
}
section:not(:first-child) {
@ -45,3 +46,17 @@ section:not(:first-child) {
max-width: 1536px;
}
}
a {
color: var(--prj-link-text);
}
ul {
/* Make the marker position is inside the container */
list-style-position: inside;
margin: 0;
}
li:not(:last-child) {
margin-bottom: var(--prj-spacing-1);
}