Files
power-consumption/public/css/layout.css
Christian Steinle 9f72a69347
Some checks failed
Build power-consumtion image / Build-and-release-image (push) Failing after 26s
Change some styling. Fix undefined array_key in functions and show overview values in yearly view.
2025-10-15 17:56:51 +02:00

58 lines
824 B
CSS

body {
font-family: sans-serif;
font-size: 1.3rem;
display: flex;
flex-direction: column;
}
input {
font-size: 1.3rem;
}
div > span {
text-align: right;
}
div.grid-container {
display: grid;
column-gap: 20px;
}
span.color-1 {
background-color: #375BEB;
}
span.color-2 {
background-color: #90EB36;
}
span.color-3 {
background-color: #EB5F36;
}
span.color-4 {
background-color: #DAE32D;
}
form > div {
display: flex;
flex-direction: row;
}
button, .button {
text-align: center;
background-color: rgb(239, 239, 239);
border: 2px outset rgb(0, 0 , 0);
text-decoration: none;
color: rgb(0, 0, 0);
font-size: 1.3rem;
padding: 8px 0;
cursor: pointer;
}
#chart-container {
position: relative;
width: 95vw;
height: 95vh;
}