Files
no-copy-frontend/src/app/styles/global-styles.scss
T

283 lines
4.3 KiB
SCSS
Raw Normal View History

2025-11-26 14:01:35 +07:00
@use './header.scss';
2025-12-17 12:50:01 +07:00
@use './pages-styles.scss';
2025-12-01 15:21:56 +07:00
@use './settings.scss';
2025-12-01 17:36:20 +07:00
@use './payment-container.scss';
2025-12-04 18:21:39 +07:00
@use './reports.scss';
2025-12-12 11:43:28 +07:00
@use './privacy-and-terms-pages.scss';
@use './VKLogin.scss';
2025-11-26 17:18:20 +07:00
2025-12-27 11:54:54 +07:00
.main-containter-wrapper {
margin-left: 280px;
flex: 1;
padding: 30px;
background: #f8f9ff;
min-height: 100vh;
}
.main-containter {
max-width: 1920px;
margin: 0 auto;
}
2025-11-26 17:18:20 +07:00
.btn {
padding: 12px 24px;
border-radius: 10px;
border: none;
cursor: pointer;
font-size: 14px;
font-weight: 600;
transition: all 0.3s;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-primary {
background: linear-gradient(135deg, #6366f1, #8b5cf6);
color: white;
border: 2px solid transparent;
&:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}
2025-11-27 13:48:24 +07:00
}
2025-12-01 15:21:56 +07:00
.btn-secondary {
background: #f3f4f6;
color: #374151;
border: 2px solid transparent;
&:hover {
background: #e5e7eb;
}
}
.btn-outline {
background: transparent;
border: 2px solid #6366f1;
color: #6366f1;
&:hover {
background: #6366f1;
color: white;
}
}
2025-11-27 13:48:24 +07:00
.divider {
text-align: center;
margin: 20px 0;
position: relative;
color: #9ca3af;
font-size: 14px;
&::before {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 1px;
background: #e5e7eb;
}
span {
background: white;
padding: 0 15px;
position: relative;
}
2025-12-01 15:21:56 +07:00
}
.settings-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
margin-bottom: 30px;
2025-12-12 11:43:28 +07:00
}
.main-content {
padding: 60px 0 100px;
background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 24px;
}
2025-12-15 12:22:42 +07:00
}
.show-password-button {
cursor: pointer;
position: absolute;
2025-12-22 14:30:25 +07:00
top: 50%;
right: 10px;
transform: translateY(-50%);
2025-12-15 12:22:42 +07:00
svg {
width: 16px;
color: #686060;
transition: color 0.2s ease;
}
&.show {
svg {
2025-12-22 14:30:25 +07:00
color: #8b5cf6;
2025-12-15 12:22:42 +07:00
}
}
2025-12-16 20:26:17 +07:00
}
@media (max-width: 1300px) {
.tanstak-file-table {
max-width: 800px;
margin: 0 auto;
}
}
@media (max-width: 1200px) {
.tanstak-file-table {
max-width: 500px;
margin: 0 auto;
}
2025-12-18 17:21:18 +07:00
}
.modal-wrapper {
position: fixed;
z-index: 101;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: #0000007a;
.modal-window {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 20px;
background: #fff;
color: #000;
border-radius: 20px;
box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 20px;
}
2025-12-19 13:05:50 +07:00
}
.tanstak-table {
2025-12-26 16:10:42 +07:00
.btn-modal {
transition: all 0.3ms ease-in-out;
border-radius: 10px;
padding: 5px 20px;
font-weight: 500;
}
2025-12-19 13:05:50 +07:00
:where(.divide-gray-200 > tr:last-child) {
border-bottom: 1px solid var(--color-gray-200);
}
2025-12-27 11:54:54 +07:00
}
.sidebar {
width: 280px;
background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
padding: 30px 0;
position: fixed;
height: 100vh;
overflow-y: auto;
z-index: 100;
}
.nav-link {
display: flex;
align-items: center;
padding: 15px 30px;
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: all 0.3s;
border-radius: 0 25px 25px 0;
margin-right: 20px;
margin-bottom: 8px;
font-weight: 500;
text-transform: uppercase;
&:hover {
background: rgba(255, 255, 255, 0.15);
color: white;
}
svg {
margin-right: 15px;
width: 20px;
height: 20px;
}
}
.sub-link {
padding: 12px 50px;
font-size: 14px;
border-radius: 0;
margin-right: 0;
&:last-child {
margin-bottom: 0;
}
}
.nav-dropdown {
.dropdown-arrow {
margin-left: auto;
transition: transform 0.3s;
}
&.expanded {
.dropdown-arrow {
transform: rotate(180deg);
}
}
}
.sub-menu.expanded {
max-height: 400px;
}
.sub-menu {
list-style: none;
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
background: rgba(255, 255, 255, 0.1);
margin-right: 20px;
border-radius: 0 15px 15px 0;
}
.logo {
display: flex;
align-items: center;
padding: 0 30px 40px;
color: white;
font-size: 24px;
font-weight: 600;
text-transform: uppercase;
svg {
width: 32px;
height: 32px;
margin-right: 15px;
}
}
.logo-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
background: linear-gradient(135deg, #6366f1, #8b5cf6);
border-radius: 15px;
margin-bottom: 15px;
svg {
width: 30px;
height: 30px;
fill: white;
}
2025-11-26 17:18:20 +07:00
}