front_foundation #5

Open
mohamed_maoulainine wants to merge 73 commits from front_foundation into main
3 changed files with 18 additions and 27 deletions
Showing only changes of commit 22ebb0e1f4 - Show all commits

View File

@ -50,14 +50,23 @@
text-align: center; text-align: center;
transition: all 0.3s ease; transition: all 0.3s ease;
cursor: pointer; cursor: pointer;
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
} }
.cell_Expanded { .cell:not(.expanded):hover {
display: flex; transform: scale(1.05);
flex-direction: column; box-shadow: 0 8px 9px rgba(0, 0, 0, 0.2);
align-items: center; }
transition: all 0.3s ease;
cursor: pointer; .cell h3 {
font-size: 20px;
font-weight: 500;
/*margin-bottom: 10px;*/
}
.cell p {
font-size: 14px;
color: #666;
} }
.expanded { .expanded {

View File

@ -46,7 +46,6 @@ export default {
padding: 10px; padding: 10px;
max-width: 1200px; max-width: 1200px;
margin: 20px auto; margin: 20px auto;
border: 2px dashed #d33;
background-color: #fff; background-color: #fff;
position: relative; position: relative;
height: 80vh; height: 80vh;

View File

@ -4,15 +4,6 @@ body {
padding: 10px; padding: 10px;
} }
.canvas {
display: flex;
flex-direction: column;
max-width: 1200px;
margin: 20px auto;
border: 2px dashed #d33;
background: #fff;
}
.row { .row {
display: flex; display: flex;
} }
@ -67,14 +58,6 @@ body {
margin-bottom: 10px; margin-bottom: 10px;
} }
.cell {
flex: 1;
border: 1px solid #ddd;
padding: 20px;
text-align: center;
background-color: #f1f1f1;
}
#ade { #ade {
max-width: 1200px; max-width: 1200px;
margin: 20px auto; margin: 20px auto;