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';
|
2025-12-15 17:32:30 +07:00
|
|
|
@use './VKLogin.scss';
|
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;
|
|
|
|
|
top: 0px;
|
2025-12-15 12:42:50 +07:00
|
|
|
right: 6px;
|
2025-12-15 12:22:42 +07:00
|
|
|
|
|
|
|
|
svg {
|
|
|
|
|
width: 16px;
|
|
|
|
|
color: #686060;
|
|
|
|
|
transition: color 0.2s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.show {
|
|
|
|
|
svg {
|
|
|
|
|
color: black;
|
|
|
|
|
}
|
|
|
|
|
}
|
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 {
|
|
|
|
|
:where(.divide-gray-200 > tr:last-child) {
|
|
|
|
|
border-bottom: 1px solid var(--color-gray-200);
|
|
|
|
|
}
|
2025-11-26 17:18:20 +07:00
|
|
|
}
|