Files
webfejlesztes/javascript/mozi/style.css

41 lines
635 B
CSS
Raw Normal View History

2022-05-15 19:44:10 +02:00
body{
margin-left: 1%;
margin-right: 1%;
margin-top: 1%;
margin-bottom: 1%;
}
.flex-container {
display: flex;
background-color: DodgerBlue;
flex-direction: column;
flex-wrap: wrap;
justify-content: center;
padding: 1%;
}
.szek{
background-color: #f1f1f1;
width: 10%;
margin: 1%;
text-align: center;
line-height: 100px;
font-size: 30px;
}
.sor{
display: flex;
background-color: purple;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
}
.foglalt{
background-color: red;
}
.ideiglenes{
background-color: darkturquoise;
}