315 lines
5.4 KiB
SCSS
315 lines
5.4 KiB
SCSS
.Card {
|
|
background: var(--bg);
|
|
@include Shadow;
|
|
padding: 20px 2vw;
|
|
border-radius: 10px;
|
|
}
|
|
.TowItemField {
|
|
display: flex;
|
|
gap: 4%;
|
|
margin-bottom: 20px;
|
|
> * {
|
|
width: 48%;
|
|
}
|
|
}
|
|
.small_section {
|
|
background: var(--bg);
|
|
@include Shadow;
|
|
width: 30%;
|
|
display: flex;
|
|
gap: 6%;
|
|
flex-wrap: wrap;
|
|
margin-inline: auto;
|
|
padding: 20px;
|
|
}
|
|
.big_section {
|
|
width: 70%;
|
|
padding: 30px 40px 30px 20px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
|
|
.single_student_header {
|
|
color: var(--primary);
|
|
span {
|
|
color: var(--subtext);
|
|
}
|
|
}
|
|
|
|
.FormPage {
|
|
padding: 3vw !important;
|
|
display: flex;
|
|
flex-direction: column;
|
|
color: var(--secondary);
|
|
gap: 2vw;
|
|
|
|
.SubmitButtonparent {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
.ant-picker-outlined {
|
|
border-color: var(--border-color) !important;
|
|
}
|
|
.ant-select-outlined:not(.ant-select-customize-input) .ant-select-selector {
|
|
border: 1px solid var(--border-color) !important;
|
|
}
|
|
.ant-input-outlined {
|
|
border-color: var(--border-color);
|
|
}
|
|
}
|
|
|
|
.ant-input-outlined {
|
|
border-color: var(--border-color);
|
|
padding: 0.5vw 1vw;
|
|
font-size: 0.8vw;
|
|
height: 3vw;
|
|
border-radius: 0.6vw;
|
|
}
|
|
|
|
.FormCard {
|
|
// background: var(--bg);
|
|
border-radius: var(--border-radius);
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
> header {
|
|
background: var(--primary);
|
|
color: var(--white);
|
|
width: 100%;
|
|
border-top-right-radius: var(--border-radius);
|
|
border-top-left-radius: var(--border-radius);
|
|
padding: 1vw 2vw;
|
|
}
|
|
.Card {
|
|
padding: 2vw 4vw;
|
|
display: flex;
|
|
}
|
|
button {
|
|
outline: none;
|
|
border: none;
|
|
background: var(--primary) !important;
|
|
border-radius: 30px;
|
|
padding: 15px 10px;
|
|
width: 130px;
|
|
}
|
|
}
|
|
|
|
.SaveDetails {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: flex-end;
|
|
> button {
|
|
outline: none;
|
|
border: none;
|
|
border-radius: 10px;
|
|
padding: 0.8vw 0.4vw;
|
|
background: var(--primary);
|
|
color: var(--white);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 5px;
|
|
font-size: 1vw;
|
|
width: 12vw;
|
|
}
|
|
}
|
|
.Buttons_over_width {
|
|
display: flex;
|
|
gap: 4%;
|
|
align-items: center;
|
|
> button,
|
|
> div {
|
|
outline: none;
|
|
border: none;
|
|
border-radius: 50px;
|
|
padding: 0.8vw 2vw;
|
|
background: var(--primary);
|
|
color: var(--white);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 5px;
|
|
font-size: 1vw;
|
|
}
|
|
}
|
|
.Buttons {
|
|
display: flex;
|
|
gap: 4%;
|
|
align-items: center;
|
|
> button,
|
|
> div {
|
|
outline: none;
|
|
border: none;
|
|
border-radius: 50px;
|
|
padding: 0.8vw 0.4vw;
|
|
background: var(--primary);
|
|
color: var(--white);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 5px;
|
|
font-size: 1vw;
|
|
width: 12vw;
|
|
}
|
|
}
|
|
|
|
.TowButton {
|
|
display: flex;
|
|
gap: 4%;
|
|
align-items: center;
|
|
> button {
|
|
outline: none;
|
|
border: none;
|
|
border-radius: var(--border-radius);
|
|
padding: 0.8vw 0.4vw;
|
|
background: var(--primary);
|
|
color: var(--white);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 5px;
|
|
font-size: 1vw;
|
|
width: 12vw;
|
|
&:nth-child(2) {
|
|
background: transparent;
|
|
color: var(--primary);
|
|
}
|
|
}
|
|
}
|
|
|
|
.button {
|
|
outline: none;
|
|
border: none;
|
|
border-radius: var(--border-radius);
|
|
padding: 0.8vw 0.4vw;
|
|
background: var(--primary);
|
|
color: var(--white);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 5px;
|
|
font-size: 1vw;
|
|
width: 12vw;
|
|
}
|
|
.Bold {
|
|
font-weight: bold;
|
|
}
|
|
.Primary {
|
|
color: var(--primary);
|
|
}
|
|
|
|
.SeeMoreEye {
|
|
background: var(--primary);
|
|
border-radius: 50%;
|
|
width: 30px;
|
|
height: 30px;
|
|
margin-inline: auto;
|
|
@include Flex;
|
|
svg {
|
|
color: var(--white);
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
.SeeMoreEyeColumn {
|
|
// display: flex;
|
|
// justify-content: center;
|
|
// align-items: center;
|
|
}
|
|
|
|
.disabled_button {
|
|
background: #88b7e3 !important;
|
|
}
|
|
|
|
.Add_table_button {
|
|
button {
|
|
outline: none;
|
|
border: none;
|
|
width: 10vw;
|
|
border-radius: 30px;
|
|
padding: 0.7vw;
|
|
font-weight: bold;
|
|
background: var(--primary);
|
|
color: var(--white);
|
|
|
|
gap: 5px;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
.loading_page {
|
|
height: 100%;
|
|
width: 50vw;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.Spinier_Div {
|
|
position: absolute;
|
|
width: 80% !important;
|
|
height: 80%;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
background: var(--primary);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
.ant-spin .ant-spin-dot-item {
|
|
background: white !important;
|
|
}
|
|
}
|
|
|
|
button:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed !important; /* examle: change cursor */
|
|
}
|
|
.relative {
|
|
position: relative;
|
|
}
|
|
.h1 {
|
|
text-align: center;
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
.buttonAction {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 2vw;
|
|
|
|
> button {
|
|
outline: none;
|
|
border: none;
|
|
border-radius: 20px;
|
|
padding: 0.3vw 1.5vw;
|
|
width: 8vw;
|
|
height: 2vw;
|
|
// background: var(--primary);
|
|
color: var(--white);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 5px;
|
|
font-size: 0.8vw;
|
|
}
|
|
.EditButton {
|
|
background: var(--bg);
|
|
border: 1px solid #d4d4d8;
|
|
color: var(--text);
|
|
}
|
|
.DeleteButton {
|
|
background: #dc2626;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.cc{
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
} |