21 lines
301 B
CSS
21 lines
301 B
CSS
.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;
|
|
} |