Transport-platform/style.css
2020-04-28 14:18:35 +00:00

23 lines
408 B
CSS

.span-class {
margin: 0;
padding: 0;
background-color: rgba(235, 21, 21, 0.5);
width: 30%;
display: flex;
flex-direction: row;
align-items: center;
}
.mainGrid {
display: grid;
grid-template-rows: 1fr 1fr 1fr;
grid-template-columns: 1fr 1fr;
gap: 2px;
background-color: rgb(119, 101, 89);
text-align: center;
}