21 lines
301 B
CSS
Raw Normal View History

2025-02-14 18:39:20 +04:00
.centered {
text-align: center;
}
.testElement{
background-color: aquamarine;
text-align: center;
vertical-align: auto;
width: 15%;
padding: 1%;
}
.inlineList{
list-style: none;
display: flex;
}
li {
margin-left:5%;
}
body{
font-family: 'Roboto', sans-serif;
}