mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-17 19:08:11 -05:00
* Remove light mode * Trim header * New front page initial * Get rid of build layout * Breadcrumbs * Desktop side nav * Overhaul colors * Add breadcrumbs * New sub nav style * Front page action buttons * Add back add new build button * Add articles page with icon * Minor Object damage page layout tweaks * Remove one unnecessary render from object damage * Fix wrong link in article page * Profile -> My Page in header * Log in/out buttons in front * Add drawings to front page * Remove unnecessary comment
43 lines
782 B
CSS
43 lines
782 B
CSS
.builds__top-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.builds__category {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: var(--s-3);
|
|
border-radius: var(--rounded);
|
|
background-color: var(--bg-lighter);
|
|
font-size: var(--fonts-sm);
|
|
font-weight: 600;
|
|
gap: var(--s-4);
|
|
}
|
|
|
|
.builds__category__header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--s-2-5);
|
|
}
|
|
|
|
.builds__category__weapons {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: var(--s-3);
|
|
}
|
|
|
|
.builds__category__weapon {
|
|
display: flex;
|
|
align-items: center;
|
|
color: var(--text);
|
|
font-size: var(--fonts-xs);
|
|
font-weight: var(--body);
|
|
gap: var(--s-1);
|
|
}
|
|
|
|
.builds__category__weapon__img {
|
|
border-radius: var(--rounded);
|
|
background-color: var(--bg-darker);
|
|
}
|