rpi-rgb/app/static/app.css
Finn Christiansen d6543909a5
All checks were successful
CSS Linter / CSS-Lint (push) Successful in 24s
Python formatting PEP8 / Pyhton-PEP8 (push) Successful in 14s
pass css test
2023-06-01 20:32:43 +02:00

70 lines
819 B
CSS

html {
font-family: sans-serif;
}
h1 {
text-align: center;
}
.container {
display: flex;
flex-wrap: wrap;
}
.center {
margin: auto;
max-width: 500px;
}
.color {
display: block;
width: calc(100vw - 24px);
height: 100px;
border: 1px solid black;
box-sizing: border-box;
text-align: center;
line-height: 100px;
font-size: 18px;
font-weight: bold;
cursor: pointer;
margin-bottom: 16px;
border-radius: 12px;
}
.red {
background-color: #f00;
}
.green {
background-color: #0f0;
}
.blue {
background-color: #00f;
color: #fff;
}
.cyan {
background-color: #0ff;
}
.yellow {
background-color: #ff0;
}
.orange {
background-color: #ff8000;
}
.purple {
background-color: #f0f;
}
.white {
background-color: #fff;
}
.black {
background-color: #000;
color: #fff;
}