feat(app): major refactorings and details footer updates

This commit is contained in:
rektdeckard
2023-02-11 13:58:33 -07:00
parent eba876b3ea
commit 345acafb45
33 changed files with 376 additions and 540 deletions

View File

@@ -1,3 +1,17 @@
:root {
--red: #ff6e60;
--blue: #397fff;
--yellow: #ffd171;
--purple: #925bff;
--eggplant: #35313d;
--neutral: #86838b;
--translucent: rgba(163, 159, 171, 0.1);
--scrim: rgba(255, 255, 255, 0.05);
--sheer: rgba(194, 186, 196, 0.25);
--soft: rgba(194, 186, 196, 0.7);
--shadow: rgba(0, 0, 0, 0.15);
}
body {
margin: 0px;
font-variant-ligatures: common-ligatures;
@@ -24,16 +38,14 @@ img {
pre,
code {
font-family: "IBM Plex Mono", "Courier New", monospace;
font-size: 14px;
font-size: 12px;
}
pre {
box-sizing: border-box;
padding: 20px 16px 20px 24px;
margin: 12px 0px;
/* background-color: white; */
margin: 0;
border-radius: 6px;
/* border: 1px solid #e1d4d7; */
font-size: 12x;
white-space: pre-wrap;
}
@@ -77,14 +89,6 @@ button.main-button:active {
box-shadow: 0 0 0 0 black;
}
button.main-button:focus {
outline: none;
}
/* button.main-button:not(:last-child) {
margin: 0 24px 24px 0;
} */
button.main-button svg {
margin-right: 12px;
}
@@ -117,11 +121,11 @@ a.main-link:hover:after {
}
.badge.new {
color: #ff6e60;
color: var(--red);
}
.badge.updated {
color: #397fff;
color: var(--blue);
}
.badge {
@@ -131,15 +135,15 @@ a.main-link:hover:after {
.card {
border-radius: 8px;
border: 2px solid rgba(163, 159, 171, 0.1);
border: 2px solid var(--translucent);
}
.card.dark {
color: white;
background-color: #413c48;
.primary {
color: var(--foreground);
background-color: var(--background);
}
.card.light {
color: rgb(53, 49, 61);
background-color: #f6f5f6;
.secondary {
color: var(--foreground-card);
background-color: var(--background-card);
}