47 lines
666 B
CSS
Raw Permalink Normal View History

2025-02-14 18:39:20 +04:00
.centered {
text-align: center;
}
2025-02-15 14:55:37 +04:00
.rowShow{
display: flex;
max-width: 100vw;
max-height: 20vh;
width:100%;
vertical-align: middle;
}
2025-02-14 18:39:20 +04:00
.testElement{
2025-02-15 14:02:55 +04:00
border: 1px black solid;
2025-02-14 18:39:20 +04:00
text-align: center;
vertical-align: auto;
2025-02-15 14:02:55 +04:00
width: 10%;
height: 10%;
2025-02-14 18:39:20 +04:00
padding: 1%;
2025-02-15 14:55:37 +04:00
margin-left:20px;
2025-02-14 18:39:20 +04:00
}
2025-02-15 14:02:55 +04:00
.testElement img{
object-fit: contain;
max-width: 100%;
max-height: 100%;
}
2025-02-14 18:39:20 +04:00
.inlineList{
list-style: none;
display: flex;
}
li {
margin-left:5%;
}
body{
font-family: 'Roboto', sans-serif;
2025-02-15 17:12:24 +04:00
background-color: azure;
2025-02-15 14:02:55 +04:00
}
a{
text-decoration: none;
}
a{
color:blue;
2025-02-15 14:55:37 +04:00
}
.active{
color:rgb(226, 101, 43);
2025-02-14 18:39:20 +04:00
}