2025-03-31 13:52:37 +00:00
|
|
|
@use "../abstracts/variables.scss" as *;
|
|
|
|
@use "../abstracts/mixins.scss" as *;
|
|
|
|
|
|
|
|
.dashboard-main {
|
|
|
|
height: 100vh;
|
|
|
|
width: 100vw;
|
|
|
|
display: flex;
|
2025-05-21 12:16:16 +00:00
|
|
|
padding: 27px 17px;
|
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.side-pannel-container {
|
|
|
|
padding: 32px;
|
2025-05-21 12:16:16 +00:00
|
|
|
min-width: 280px;
|
|
|
|
height: 100%;
|
2025-03-31 13:52:37 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 16px;
|
2025-05-21 12:16:16 +00:00
|
|
|
// border-right: 1px solid var(--border-color);
|
|
|
|
background: var(--background-color);
|
|
|
|
backdrop-filter: blur(20px);
|
|
|
|
border-radius: 30px;
|
|
|
|
box-shadow: var(--box-shadow-medium);
|
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.side-pannel-header {
|
|
|
|
@include flex-space-between;
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.user-container {
|
|
|
|
@include flex-center;
|
|
|
|
gap: 6px;
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.user-profile {
|
|
|
|
height: 32px;
|
|
|
|
width: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: var(--font-weight-medium);
|
|
|
|
background: var(--accent-color);
|
|
|
|
color: var(--primary-color);
|
|
|
|
border-radius: #{$border-radius-circle};
|
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.user-name {
|
|
|
|
color: var(--accent-color);
|
|
|
|
}
|
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.notifications-container {
|
|
|
|
@include flex-center;
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.new-project-button {
|
|
|
|
padding: 12px 16px;
|
|
|
|
cursor: not-allowed;
|
2025-05-21 12:16:16 +00:00
|
|
|
color: var(--text-color);
|
2025-04-29 10:57:03 +00:00
|
|
|
background: var(--background-color-secondary);
|
2025-05-21 12:16:16 +00:00
|
|
|
border-radius: #{$border-radius-xxx};
|
2025-03-31 13:52:37 +00:00
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.side-bar-content-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
height: 100%;
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.side-bar-options-container {
|
|
|
|
.option-list {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 8px;
|
2025-05-21 12:16:16 +00:00
|
|
|
padding: 8px 10px;
|
2025-03-31 13:52:37 +00:00
|
|
|
margin: 4px 0;
|
2025-05-21 12:16:16 +00:00
|
|
|
border-radius: #{$border-radius-extra-large};
|
|
|
|
cursor: pointer;
|
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
&:hover {
|
|
|
|
background: var(--background-color-secondary);
|
|
|
|
}
|
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.active {
|
2025-05-21 12:16:16 +00:00
|
|
|
color: var(--text-button-color);
|
2025-03-31 13:52:37 +00:00
|
|
|
font-weight: var(--font-weight-medium);
|
2025-05-21 12:16:16 +00:00
|
|
|
background: var(--background-color-button);
|
|
|
|
|
2025-06-10 05:33:39 +00:00
|
|
|
svg {
|
|
|
|
path {
|
|
|
|
stroke: var(--background-color-selected);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
&:hover {
|
2025-05-21 12:16:16 +00:00
|
|
|
background: var(--background-color-button);
|
2025-03-31 13:52:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.dashboard-home-container {
|
|
|
|
width: 100%;
|
2025-05-21 12:16:16 +00:00
|
|
|
padding-left: 18px;
|
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.dashboard-navbar-container {
|
|
|
|
margin-top: 28px;
|
2025-05-21 12:16:16 +00:00
|
|
|
margin-bottom: 22px;
|
2025-03-31 13:52:37 +00:00
|
|
|
@include flex-center;
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.title {
|
|
|
|
text-transform: capitalize;
|
|
|
|
font-size: var(--font-size-large);
|
|
|
|
width: 100%;
|
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.market-place-button {
|
|
|
|
@include flex-center;
|
|
|
|
gap: 6px;
|
|
|
|
padding: 8px 14px;
|
2025-05-21 12:16:16 +00:00
|
|
|
background: var(--background-color-button);
|
2025-03-31 13:52:37 +00:00
|
|
|
white-space: nowrap;
|
2025-05-21 12:16:16 +00:00
|
|
|
border-radius: #{$border-radius-extra-large};
|
|
|
|
|
|
|
|
color: var(--text-button-color);
|
2025-03-31 13:52:37 +00:00
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.search-wrapper {
|
|
|
|
width: 400px;
|
|
|
|
}
|
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.container {
|
|
|
|
margin: 22px 0;
|
|
|
|
width: 100%;
|
2025-05-21 12:16:16 +00:00
|
|
|
height: calc(100% - 357px);
|
|
|
|
|
|
|
|
.header-wrapper {
|
2025-03-31 13:52:37 +00:00
|
|
|
font-size: var(--font-size-large);
|
2025-05-21 12:16:16 +00:00
|
|
|
|
|
|
|
.header {
|
|
|
|
color: var(--input-text-color);
|
|
|
|
padding: 6px 8px;
|
|
|
|
border-radius: #{$border-radius-extra-large};
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
background: var(--background-color-button);
|
|
|
|
color: var(--text-color);
|
|
|
|
}
|
|
|
|
}
|
2025-03-31 13:52:37 +00:00
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.cards-container {
|
2025-05-21 12:16:16 +00:00
|
|
|
height: 100%;
|
2025-03-31 13:52:37 +00:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
2025-05-21 12:16:16 +00:00
|
|
|
padding-top: 18px;
|
2025-03-31 13:52:37 +00:00
|
|
|
gap: 18px;
|
2025-05-21 12:16:16 +00:00
|
|
|
overflow: auto;
|
2025-03-31 13:52:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dashboard-card-container {
|
|
|
|
height: 242px;
|
|
|
|
width: calc((100% / 5) - 23px);
|
|
|
|
min-width: 260px;
|
|
|
|
position: relative;
|
|
|
|
border: 1px solid var(--border-color);
|
2025-05-21 12:16:16 +00:00
|
|
|
border-radius: #{$border-radius-extra-large};
|
2025-03-31 13:52:37 +00:00
|
|
|
overflow: hidden;
|
2025-05-21 12:16:16 +00:00
|
|
|
cursor: pointer;
|
|
|
|
overflow: visible;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.dashboard-card-wrapper {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.preview-container {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
img {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
vertical-align: top;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
2025-05-21 12:16:16 +00:00
|
|
|
border-radius: #{$border-radius-extra-large};
|
2025-03-31 13:52:37 +00:00
|
|
|
}
|
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.project-details-container {
|
|
|
|
@include flex-space-between;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
2025-05-21 12:16:16 +00:00
|
|
|
padding: 13px 16px;
|
|
|
|
background: var(--background-color);
|
|
|
|
// backdrop-filter: blur(18px);
|
|
|
|
|
|
|
|
border-radius: #{$border-radius-xlarge};
|
2025-06-05 10:08:16 +00:00
|
|
|
// transform: translateY(100%);///////hovered
|
2025-05-21 12:16:16 +00:00
|
|
|
transition: transform 0.25s linear;
|
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.project-details {
|
2025-06-10 05:33:39 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.project-name {
|
2025-05-21 12:16:16 +00:00
|
|
|
margin-bottom: 7px;
|
2025-03-31 13:52:37 +00:00
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.project-data {
|
2025-05-21 12:16:16 +00:00
|
|
|
color: var(--input-text-color);
|
2025-03-31 13:52:37 +00:00
|
|
|
}
|
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.users-list-container {
|
|
|
|
@include flex-center;
|
|
|
|
gap: 6px;
|
2025-05-21 12:16:16 +00:00
|
|
|
position: relative; // Needed for absolute positioning of kebab-options-wrapper
|
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.user-profile {
|
|
|
|
height: 26px;
|
|
|
|
width: 26px;
|
|
|
|
line-height: 26px;
|
|
|
|
text-align: center;
|
2025-04-29 10:57:03 +00:00
|
|
|
background: var(--accent-color);
|
2025-06-10 05:33:39 +00:00
|
|
|
// color: var(--primary-color);
|
|
|
|
color: var(--text-color);
|
2025-03-31 13:52:37 +00:00
|
|
|
border-radius: #{$border-radius-circle};
|
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
|
|
|
.kebab {
|
|
|
|
padding: 10px;
|
|
|
|
@include flex-center;
|
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
2025-03-31 13:52:37 +00:00
|
|
|
}
|
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
|
|
|
.kebab-options-wrapper {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 40px;
|
|
|
|
right: 40px;
|
|
|
|
background: var(--background-color);
|
|
|
|
border: 1px solid var(--border-color);
|
|
|
|
border-radius: 8px;
|
|
|
|
z-index: 100;
|
|
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
2025-06-10 05:33:39 +00:00
|
|
|
backdrop-filter: blur(20px);
|
2025-05-21 12:16:16 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
transform: translate(100%, 100%);
|
|
|
|
overflow: hidden;
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
.option {
|
|
|
|
padding: 8px 12px;
|
|
|
|
font-size: 14px;
|
|
|
|
text-align: left;
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
color: var(--text-color);
|
|
|
|
cursor: pointer;
|
|
|
|
transition: background 0.2s ease;
|
|
|
|
text-transform: capitalize;
|
|
|
|
|
|
|
|
&:hover {
|
2025-06-10 05:33:39 +00:00
|
|
|
background-color: var(--background-color-selected);
|
2025-05-21 12:16:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
overflow: visible;
|
2025-06-10 05:33:39 +00:00
|
|
|
|
2025-05-21 12:16:16 +00:00
|
|
|
.kebab-options-wrapper {
|
|
|
|
display: flex;
|
|
|
|
}
|
2025-06-10 05:33:39 +00:00
|
|
|
|
2025-05-21 12:16:16 +00:00
|
|
|
.project-details-container {
|
|
|
|
transform: translateY(0);
|
|
|
|
}
|
|
|
|
}
|
2025-03-31 13:52:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.market-place-banner-container {
|
|
|
|
width: 100%;
|
|
|
|
height: 230px;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
img {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
object-fit: cover;
|
2025-05-05 12:32:04 +00:00
|
|
|
border-radius: #{$border-radius-xxx};
|
2025-03-31 13:52:37 +00:00
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.hero-text {
|
|
|
|
position: absolute;
|
|
|
|
left: 52px;
|
|
|
|
bottom: 25px;
|
|
|
|
font-size: 48px;
|
|
|
|
font-family: #{$font-roboto};
|
|
|
|
font-weight: 800;
|
|
|
|
color: #ffffff;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.context {
|
|
|
|
position: absolute;
|
|
|
|
top: 20px;
|
|
|
|
right: 58px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 22px;
|
|
|
|
width: 300px;
|
|
|
|
color: #ffffff;
|
|
|
|
font-family: #{$font-roboto};
|
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.arrow-context {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 27px;
|
|
|
|
right: 300px;
|
|
|
|
}
|
2025-05-21 12:16:16 +00:00
|
|
|
|
2025-03-31 13:52:37 +00:00
|
|
|
.explore-button {
|
|
|
|
position: absolute;
|
|
|
|
top: 95px;
|
|
|
|
right: 52px;
|
|
|
|
padding: 10px 20px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 24px;
|
|
|
|
border: 1px solid #ffffff;
|
|
|
|
color: #ffffff;
|
|
|
|
font-family: #{$font-roboto};
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2025-06-10 05:33:39 +00:00
|
|
|
}
|