134 lines
1.8 KiB
CSS
134 lines
1.8 KiB
CSS
.classroom {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
border: 3px solid black;
|
|
margin: 10px;
|
|
}
|
|
|
|
.classroom-group {
|
|
flex: 1 1 25%;
|
|
background-color: #fafafa;
|
|
}
|
|
|
|
mat-card {
|
|
width: 150px;
|
|
position: relative;
|
|
}
|
|
|
|
.client-image-container {
|
|
position: relative;
|
|
}
|
|
|
|
.client-image {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.proyector-image {
|
|
width: auto;
|
|
height: 100px;
|
|
}
|
|
|
|
.client-info {
|
|
text-align: center;
|
|
margin-top: 5px;
|
|
font-size: medium;
|
|
color: gray;
|
|
align-items: center;
|
|
}
|
|
|
|
.client-name {
|
|
font-size: small;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.client-details {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
font-size: small;
|
|
}
|
|
|
|
mat-chip {
|
|
margin: 5px;
|
|
font-size: small;
|
|
}
|
|
|
|
.client-row {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
}
|
|
|
|
.client-container {
|
|
margin: 5px;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
.client-box {
|
|
width: 100%;
|
|
height: auto;
|
|
background-color: lightblue;
|
|
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
|
|
}
|
|
|
|
.client-box:hover {
|
|
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
|
|
transform: scale(1.2);
|
|
}
|
|
|
|
.client-box p {
|
|
margin: 0;
|
|
}
|
|
|
|
.loading-spinner {
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
mat-dialog-content {
|
|
min-height: 70vh;
|
|
}
|
|
|
|
.mat-dialog-content.loading {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
}
|
|
|
|
.client-form {
|
|
width: 100%;
|
|
}
|
|
|
|
.form-field {
|
|
width: 100%;
|
|
}
|
|
|
|
.classroom-board {
|
|
width: 250px;
|
|
height: 120px;
|
|
background-color: black;
|
|
color: white;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.misc-clients {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
.submit-button {
|
|
margin: 1rem;
|
|
} |