1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 22:13:53 +01:00
Files
fm-dx-webserver/web/css/panels.css
2024-01-22 21:57:20 +01:00

52 lines
757 B
CSS

*[class^="panel-"] {
background-color: var(--color-1);
margin-left: 10px;
margin-right: 10px;
border-radius: 30px;
text-align: center;
margin-top: 30px;
transition: 0.3s ease-in-out background-color;
}
.panel-10 {
width: 10%;
margin-bottom: 30px;
}
.panel-33 {
width: 33%;
}
.panel-75 {
width: 68%;
}
.panel-90 {
width: 88%;
}
.panel-100 {
width: 98%;
}
@media only screen and (max-width: 768px) {
.panel-10, .panel-33, .panel-90 {
width: 90%;
margin: auto;
margin-bottom: 20px;
}
.panel-75 {
width: 90%;
}
.panel-33 h2 {
padding: 20px;
padding-top: 5px;
}
.panel-100 {
width: 90%;
margin: auto;
}
}