IrisVega
434e0422fb
with '#' will be ignored, and an empty message aborts the commit. On branch main Your branch is up to date with 'RQteafactory-NodeJS/main'. Changes to be committed: modified: static/css/sensor-2.css modified: static/css/sensor-3.css modified: static/css/sensor-4.css modified: templates/sensor-2.html modified: templates/sensor-3.html modified: templates/sensor-4.html
61 lines
973 B
CSS
61 lines
973 B
CSS
body,html {
|
|
margin: 0;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-color: rgba(21, 50, 65, 0.7);
|
|
}
|
|
.container-top {
|
|
height: 10%;
|
|
width: 100%;
|
|
display: grid;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color:white;
|
|
font-size: 50px;
|
|
|
|
}
|
|
.bottom {
|
|
height: 75%;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.container1 {
|
|
width: 80%;
|
|
height: 80%;
|
|
}
|
|
.container-bottom{
|
|
height:10%;
|
|
width:100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#pressure {
|
|
margin:100px;
|
|
font-size:60px;
|
|
color:white;
|
|
}
|
|
|
|
/* Responsive design */
|
|
@media (max-width: 600px) {
|
|
.container-top {
|
|
font-size: 30px;
|
|
}
|
|
|
|
.container1 {
|
|
width: 90%;
|
|
height: 90%;
|
|
}
|
|
|
|
#pressure {
|
|
margin: 20px;
|
|
font-size: 40px;
|
|
}
|
|
} |