cringe-studios.com/mr/index-flex/flex.css

25 lines
346 B
CSS
Raw Normal View History

2024-07-19 21:26:22 +02:00
#mrFlex {
display: flex; /* hehe */
flex-direction: column;
width: 100%;
align-items: center;
gap:10px;
}
.mrFlexButton {
border: none;
outline: none;
background-color: red;
padding:10px;
align-self: stretch;
2024-07-19 21:32:20 +02:00
z-index: 1000;
2024-07-19 21:26:22 +02:00
}
.mrFlexBall {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: blue;
2024-07-19 21:32:20 +02:00
z-index: 1000;
2024-07-19 21:26:22 +02:00
}