Spaces:
Sleeping
Sleeping
File size: 1,768 Bytes
1bc149f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
.container {
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
}
mat-card {
width: 100%;
text-align: justify;
}
mat-card-header {
display: flex;
justify-content: center;
}
mat-card-title {
width: 100%;
text-align: center;
}
.section-content {
margin-top: 20px;
}
.example-question {
display: flex;
justify-content: center;
gap: 10px;
margin: 10px 0;
}
.example-question img {
width: 400px;
height: auto;
border-radius: 4px;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.response-images {
display: flex;
flex-direction: column;
align-items: center;
}
.response-images img {
margin-top: 10px;
width: 800px;
height: auto;
border-radius: 4px;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.task-buttons {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
margin: 20px 0;
}
.task-buttons button {
height: 80px;
}
.submit-button {
width: 100%;
height: 80px;
margin-top: 20px;
}
.nav-buttons {
display: flex;
justify-content: center;
gap: 10px;
}
.nav-buttons button {
width: 100%;
height: 80px;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.image-grid {
display: grid;
grid-template-columns: 25% 50% 25%;
gap: 5px;
}
.image1 {
grid-column: 1;
grid-row: span 2; /* This spans the first image across two rows */
}
.image2 {
grid-column: 2;
grid-row: 1 / 2; /* This places the second image in the first row of the second column */
}
.image3 {
grid-column: 2;
grid-row: 2 / 3; /* This places the third image in the second row of the second column */
}
.image4 {
grid-column: 3;
grid-row: span 2; /* This spans the fourth image across two rows */
}
.image-grid-item img {
width: 100%;
height: 100%;
object-fit: cover;
}
|