You've already forked Atomcms-edit
Improve overall CMS styling: refined design tokens, improved card/button/input components, circular avatars on me page
This commit is contained in:
@@ -18,22 +18,37 @@
|
||||
|
||||
@layer components {
|
||||
.nav-item {
|
||||
@apply flex h-auto md:h-[60px] items-center text-[14px] font-semibold uppercase text-gray-700 transition duration-200 ease-in-out;
|
||||
@apply flex h-auto md:h-[60px] items-center text-[14px] font-semibold uppercase transition-all duration-200 ease-in-out;
|
||||
color: var(--color-navbar-text);
|
||||
border-bottom: 4px solid transparent;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-item:hover {
|
||||
border-bottom-color: var(--color-primary);
|
||||
.nav-item::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 50%;
|
||||
width: 0;
|
||||
height: 4px;
|
||||
background-color: var(--color-primary);
|
||||
transition: all 0.2s ease-in-out;
|
||||
transform: translateX(-50%);
|
||||
border-radius: 2px 2px 0 0;
|
||||
}
|
||||
|
||||
.nav-item:hover::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.dropdown-item {
|
||||
@apply block py-2 px-4 font-semibold hover:bg-gray-100 text-gray-900;
|
||||
@apply block py-2 px-4 font-semibold transition-all duration-200 ease-in-out;
|
||||
color: var(--color-text);
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 8px 16px;
|
||||
text-align: center;
|
||||
border-radius: var(--radius-sm);
|
||||
}
|
||||
|
||||
.dropdown-item::before,
|
||||
@@ -44,10 +59,10 @@
|
||||
|
||||
.dropdown-item:hover {
|
||||
background-color: var(--color-primary);
|
||||
color: var(--button-text-color);
|
||||
}
|
||||
}
|
||||
|
||||
/* Mobile dropdown - force center everything */
|
||||
@media (max-width: 768px) {
|
||||
.dropdown-panel {
|
||||
text-align: center !important;
|
||||
@@ -65,38 +80,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
* {
|
||||
font-family: poppins, sans-serif;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
border-radius: 100px;
|
||||
border: 4px solid transparent;
|
||||
background-clip: content-box;
|
||||
background-color: #2c3039;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 16px;
|
||||
}
|
||||
|
||||
::placeholder {
|
||||
color: #626565;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
:-ms-input-placeholder {
|
||||
color: #626565;
|
||||
}
|
||||
|
||||
::-ms-input-placeholder {
|
||||
color: #626565;
|
||||
}
|
||||
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
input::placeholder,
|
||||
textarea::placeholder {
|
||||
color: var(--input-placeholder-color, var(--color-text-muted));
|
||||
@@ -120,81 +103,37 @@ textarea::placeholder {
|
||||
background-blend-mode: multiply;
|
||||
}
|
||||
|
||||
.camera-icon {
|
||||
background: #242c31 url("/public/assets/images/icons/camera.png") no-repeat
|
||||
center;
|
||||
.icon-base {
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: contain;
|
||||
}
|
||||
|
||||
.discord-icon {
|
||||
background: #25658d url("/public/assets/images/icons/discord.png") no-repeat
|
||||
center;
|
||||
}
|
||||
|
||||
html.dark .camera-icon {
|
||||
background: #25658d url("/public/assets/images/icons/camera.png") no-repeat
|
||||
center;
|
||||
}
|
||||
|
||||
.hotel-icon {
|
||||
background: #f68b08 url("/public/assets/images/icons/feeds.png") no-repeat
|
||||
center;
|
||||
}
|
||||
|
||||
.chat-icon {
|
||||
background: #375571 url("/public/assets/images/icons/chat.png") no-repeat
|
||||
center;
|
||||
}
|
||||
|
||||
.article-icon {
|
||||
background: #536e5e url("/public/assets/images/icons/article.gif") no-repeat
|
||||
center;
|
||||
}
|
||||
|
||||
.lighthouse-icon {
|
||||
background: #8554a6 url("/public/assets/images/icons/lighthouse.png")
|
||||
no-repeat center;
|
||||
}
|
||||
|
||||
.currency-icon {
|
||||
background: #e3ad06 url("/public/assets/images/icons/currency.png") no-repeat
|
||||
center;
|
||||
}
|
||||
|
||||
.catalog-icon {
|
||||
background: rgba(141, 74, 183, 0.51)
|
||||
url("/public/assets/images/icons/catalog.png") no-repeat center;
|
||||
}
|
||||
|
||||
.inventory-icon {
|
||||
background: #232121 url("/public/assets/images/icons/inventory.png") no-repeat
|
||||
center;
|
||||
}
|
||||
|
||||
.duo-chat-icon {
|
||||
background: #eec980 url("/public/assets/images/icons/due-chat.png") no-repeat
|
||||
center;
|
||||
}
|
||||
|
||||
.friends-icon {
|
||||
background: #b17f85 url("/public/assets/images/icons/friends.png") no-repeat
|
||||
center;
|
||||
}
|
||||
.camera-icon { background: #242c31 url("/public/assets/images/icons/camera.png") no-repeat center; }
|
||||
.discord-icon { background: #25658d url("/public/assets/images/icons/discord.png") no-repeat center; }
|
||||
html.dark .camera-icon { background: #25658d url("/public/assets/images/icons/camera.png") no-repeat center; }
|
||||
.hotel-icon { background: #f68b08 url("/public/assets/images/icons/feeds.png") no-repeat center; }
|
||||
.chat-icon { background: #375571 url("/public/assets/images/icons/chat.png") no-repeat center; }
|
||||
.article-icon { background: #536e5e url("/public/assets/images/icons/article.gif") no-repeat center; }
|
||||
.lighthouse-icon { background: #8554a6 url("/public/assets/images/icons/lighthouse.png") no-repeat center; }
|
||||
.currency-icon { background: #e3ad06 url("/public/assets/images/icons/currency.png") no-repeat center; }
|
||||
.catalog-icon { background: rgba(141, 74, 183, 0.51) url("/public/assets/images/icons/catalog.png") no-repeat center; }
|
||||
.inventory-icon { background: #232121 url("/public/assets/images/icons/inventory.png") no-repeat center; }
|
||||
.duo-chat-icon { background: #eec980 url("/public/assets/images/icons/due-chat.png") no-repeat center; }
|
||||
.friends-icon { background: #b17f85 url("/public/assets/images/icons/friends.png") no-repeat center; }
|
||||
|
||||
.nav-credit-icon {
|
||||
background: #e9b124 url("/public/assets/images/icons/currency/credits.png")
|
||||
no-repeat center;
|
||||
background: #e9b124 url("/public/assets/images/icons/currency/credits.png") no-repeat center;
|
||||
outline: 1px solid #b26d18;
|
||||
}
|
||||
|
||||
.nav-ducket-icon {
|
||||
background: #c44aac url("/public/assets/images/icons/currency/duckets.png")
|
||||
no-repeat center;
|
||||
background: #c44aac url("/public/assets/images/icons/currency/duckets.png") no-repeat center;
|
||||
outline: 1px solid #812378;
|
||||
}
|
||||
|
||||
.nav-diamond-icon {
|
||||
background: #caf1f3 url("/public/assets/images/icons/currency/diamonds.png")
|
||||
no-repeat center;
|
||||
background: #caf1f3 url("/public/assets/images/icons/currency/diamonds.png") no-repeat center;
|
||||
outline: 1px solid #6caff4;
|
||||
}
|
||||
|
||||
@@ -207,42 +146,34 @@ html.dark .camera-icon {
|
||||
background-blend-mode: multiply;
|
||||
}
|
||||
|
||||
#disconnected {
|
||||
display: none;
|
||||
}
|
||||
#disconnected { display: none; }
|
||||
|
||||
.profile-bg {
|
||||
background: rgba(0, 0, 0, 0.5)
|
||||
url("/public/assets/images/profile/profile-bg.png");
|
||||
background: rgba(0, 0, 0, 0.5) url("/public/assets/images/profile/profile-bg.png");
|
||||
background-blend-mode: multiply;
|
||||
}
|
||||
|
||||
.leaderboard-first {
|
||||
background: #f9d83e url("/public/assets/images/leaderboards/trophy-gold.png")
|
||||
no-repeat center;
|
||||
background: #f9d83e url("/public/assets/images/leaderboards/trophy-gold.png") no-repeat center;
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.leaderboard-second {
|
||||
background: #b8c4d4
|
||||
url("/public/assets/images/leaderboards/trophy-silver.png") no-repeat center;
|
||||
background: #b8c4d4 url("/public/assets/images/leaderboards/trophy-silver.png") no-repeat center;
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.leaderboard-third {
|
||||
background: #f1851b
|
||||
url("/public/assets/images/leaderboards/trophy-bronze.png") no-repeat center;
|
||||
background: #f1851b url("/public/assets/images/leaderboards/trophy-bronze.png") no-repeat center;
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
.site-bg {
|
||||
background: url("/public/assets/images/background-light.jpg") no-repeat fixed
|
||||
right bottom;
|
||||
background: url("/public/assets/images/background-light.jpg") no-repeat fixed right bottom;
|
||||
}
|
||||
|
||||
.app.dark .site-bg {
|
||||
background: url("/public/assets/images/background-dark.jpg") no-repeat fixed
|
||||
right bottom;
|
||||
background: url("/public/assets/images/background-dark.jpg") no-repeat fixed right bottom;
|
||||
}
|
||||
|
||||
.app.dark .swal2-popup {
|
||||
@@ -263,82 +194,29 @@ html.dark .camera-icon {
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
.navigation-icon.shop {
|
||||
background-image: url("/public/assets/images/icons/navigation/shop.png");
|
||||
}
|
||||
.navigation-icon.shop { background-image: url("/public/assets/images/icons/navigation/shop.png"); }
|
||||
.navigation-icon.leaderboards { background-image: url("/public/assets/images/icons/navigation/leaderboards.png"); }
|
||||
.navigation-icon.rules { background-image: url("/public/assets/images/icons/navigation/rules.gif"); }
|
||||
.navigation-icon.home { background-image: url("/public/assets/images/icons/navigation/home.png"); }
|
||||
.navigation-icon.community { background-image: url("/public/assets/images/icons/navigation/community.png"); }
|
||||
|
||||
.navigation-icon.leaderboards {
|
||||
background-image: url("/public/assets/images/icons/navigation/leaderboards.png");
|
||||
}
|
||||
|
||||
.navigation-icon.rules {
|
||||
background-image: url("/public/assets/images/icons/navigation/rules.gif");
|
||||
}
|
||||
|
||||
.navigation-icon.home {
|
||||
background-image: url("/public/assets/images/icons/navigation/home.png");
|
||||
}
|
||||
|
||||
.navigation-icon.community {
|
||||
background-image: url("/public/assets/images/icons/navigation/community.png");
|
||||
}
|
||||
|
||||
.swiper-slide {
|
||||
height: 215px !important;
|
||||
}
|
||||
.swiper-slide { height: 215px !important; }
|
||||
|
||||
.swiper-pagination-bullet-active,
|
||||
html.dark .swiper-pagination-bullet-active {
|
||||
background: #e9b124 !important;
|
||||
}
|
||||
html.dark .swiper-pagination-bullet-active { background: #e9b124 !important; }
|
||||
html.dark .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) { background: white !important; }
|
||||
|
||||
html.dark .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
|
||||
background: white !important;
|
||||
}
|
||||
.prose-xl p:is([style*="text-align: center;"]) img { display: block; margin-left: auto; margin-right: auto; }
|
||||
.prose-xl p:is([style*="text-align: left;"]) img { margin-left: 0; margin-right: auto; }
|
||||
.prose-xl p:is([style*="text-align: right;"]) img { margin-left: auto; margin-right: 0; }
|
||||
.prose-xl p { font-size: 16px; }
|
||||
|
||||
.prose-xl p:is([style*="text-align: center;"]) img {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.atom-align-left { float: left; margin: 0 10px 10px 0; }
|
||||
.atom-align-right { float: right; margin: 0 0 10px 10px; }
|
||||
.atom-align-center { display: block; margin: 0 auto; text-align: center; }
|
||||
.atom-align-center > * { text-align: center; }
|
||||
|
||||
.prose-xl p:is([style*="text-align: left;"]) img {
|
||||
margin-left: 0;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.prose-xl p:is([style*="text-align: right;"]) img {
|
||||
margin-left: auto;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.prose-xl p {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.atom-align-left {
|
||||
float: left;
|
||||
margin: 0 10px 10px 0;
|
||||
}
|
||||
|
||||
.atom-align-right {
|
||||
float: right;
|
||||
margin: 0 0 10px 10px;
|
||||
}
|
||||
|
||||
.atom-align-center {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.atom-align-center > * {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#article-content a {
|
||||
color: #53b2f8;
|
||||
}
|
||||
#article-content a { color: #53b2f8; }
|
||||
|
||||
.badge-drawer-button {
|
||||
background-image: linear-gradient(to bottom, #f2f2f3 51%, #d9d8d8 49%);
|
||||
@@ -351,9 +229,7 @@ html.dark .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
|
||||
box-shadow: inset 0 0 0px 2px #ffffff;
|
||||
}
|
||||
|
||||
.badge-drawer-button .toggled {
|
||||
background: #f2f2f3;
|
||||
}
|
||||
.badge-drawer-button .toggled { background: #f2f2f3; }
|
||||
|
||||
html.dark .badge-drawer-button {
|
||||
background-image: linear-gradient(to bottom, #141414 51%, #101010 49%);
|
||||
@@ -366,9 +242,7 @@ html.dark .badge-drawer-button:hover {
|
||||
box-shadow: inset 0 0 0px 2px #363636;
|
||||
}
|
||||
|
||||
html.dark .badge-drawer-button .toggled {
|
||||
background: #f2f2f3;
|
||||
}
|
||||
html.dark .badge-drawer-button .toggled { background: #f2f2f3; }
|
||||
|
||||
.badge-drawer-palette {
|
||||
background-position: center;
|
||||
@@ -401,12 +275,33 @@ html.dark .badge-drawer-button .toggled {
|
||||
opacity: 0.1;
|
||||
}
|
||||
|
||||
/* Text utility classes using CSS variables */
|
||||
.text-body { color: var(--color-text); }
|
||||
.text-muted { color: var(--color-text-muted); }
|
||||
.text-nav { color: var(--color-navbar-text); }
|
||||
|
||||
/* Text shadow for readability */
|
||||
.text-shadow { text-shadow: 0 1px 3px rgba(0,0,0,0.8); }
|
||||
.text-shadow-sm { text-shadow: 0 1px 2px rgba(0,0,0,0.6); }
|
||||
.text-shadow-lg { text-shadow: 0 2px 8px rgba(0,0,0,0.9); }
|
||||
|
||||
.transition-base { transition: all 0.2s ease-in-out; }
|
||||
.transition-smooth { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
|
||||
|
||||
.hover-lift {
|
||||
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
||||
}
|
||||
.hover-lift:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: var(--shadow-card-hover);
|
||||
}
|
||||
|
||||
.card-base {
|
||||
background-color: var(--color-surface);
|
||||
border-radius: var(--radius-md);
|
||||
box-shadow: var(--shadow-card);
|
||||
border: 1px solid color-mix(in srgb, var(--color-text-muted) 15%, transparent);
|
||||
}
|
||||
|
||||
.card-base:hover {
|
||||
box-shadow: var(--shadow-card-hover);
|
||||
border-color: color-mix(in srgb, var(--color-text-muted) 25%, transparent);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user