47 lines
666 B
CSS
47 lines
666 B
CSS
.centered {
|
|
text-align: center;
|
|
}
|
|
.rowShow{
|
|
display: flex;
|
|
max-width: 100vw;
|
|
max-height: 20vh;
|
|
width:100%;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
|
|
.testElement{
|
|
border: 1px black solid;
|
|
text-align: center;
|
|
vertical-align: auto;
|
|
width: 10%;
|
|
height: 10%;
|
|
padding: 1%;
|
|
margin-left:20px;
|
|
|
|
}
|
|
.testElement img{
|
|
object-fit: contain;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
.inlineList{
|
|
list-style: none;
|
|
display: flex;
|
|
}
|
|
li {
|
|
margin-left:5%;
|
|
}
|
|
body{
|
|
font-family: 'Roboto', sans-serif;
|
|
background-color: azure;
|
|
}
|
|
a{
|
|
text-decoration: none;
|
|
}
|
|
a{
|
|
color:blue;
|
|
}
|
|
.active{
|
|
color:rgb(226, 101, 43);
|
|
} |