Responsive per mobile
This commit is contained in:
parent
91fdec5198
commit
24868f6801
1 changed files with 23 additions and 4 deletions
19
index.html
19
index.html
|
@ -278,6 +278,23 @@
|
|||
background: black;
|
||||
color: white;
|
||||
}
|
||||
@media screen and (max-width: 600px) {
|
||||
.nav{
|
||||
width: calc(100vw - 3rem);
|
||||
margin-bottom: .5rem;
|
||||
float: none;
|
||||
}
|
||||
.sections{
|
||||
float: none;
|
||||
width: calc(100vw - 1rem);
|
||||
}
|
||||
.section{
|
||||
width: calc(100vw - 3rem);
|
||||
}
|
||||
.footer{
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -300,11 +317,13 @@
|
|||
<div class="section card">
|
||||
<div class="logger">
|
||||
</div>
|
||||
<div class="controls">
|
||||
<button type="button" name="aggiungiProcesso" onclick="new Processo()">Aggiungi processo</button>
|
||||
<button type="button" name="toggleProcessi" onclick="toggleProcessiPronti()">Ferma/riprendi</button>
|
||||
<label>Velocità (in millisecondi):<input class="inputVel" type="number" onkeypress="cambiaVel(event,this)" value="500"/></label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
Creato da Claudio Maggioni, Federico Mainetti, Pamela Dardano, Fabio Brambilla
|
||||
</div>
|
||||
|
|
Reference in a new issue