basic procedure creation working
This commit is contained in:
@@ -84,3 +84,29 @@ div.gallery {
|
||||
width: 100%;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.plate {
|
||||
display: inline-grid;
|
||||
grid-auto-flow: column;
|
||||
place-content: center center;
|
||||
grid-gap: 2px;
|
||||
}
|
||||
|
||||
.well {
|
||||
border: 1px solid #000;
|
||||
padding: 20px;
|
||||
display: flex;
|
||||
text-align: center;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||||
transition: all 0.3s ease;
|
||||
cursor: move;
|
||||
}
|
||||
|
||||
.well:hover {
|
||||
box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.grid-item p {
|
||||
max-width: 100%;
|
||||
border-radius: 8px;
|
||||
}
|
||||
Reference in New Issue
Block a user