95 lines
1.5 KiB
CSS
95 lines
1.5 KiB
CSS
/* ===============================
|
|
ADMIN — layout base
|
|
=============================== */
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background: #fafafa;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#app {
|
|
padding: 20px;
|
|
}
|
|
|
|
h2 {
|
|
margin-bottom: 20px;
|
|
color: #333;
|
|
}
|
|
|
|
/* ===============================
|
|
Pulsanti
|
|
=============================== */
|
|
|
|
button {
|
|
padding: 10px 14px;
|
|
margin: 5px 5px 5px 0;
|
|
border: none;
|
|
border-radius: 6px;
|
|
background: #1976d2;
|
|
color: white;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
}
|
|
|
|
button:hover {
|
|
background: #125a9c;
|
|
}
|
|
|
|
/* ===============================
|
|
Box cambiamenti
|
|
=============================== */
|
|
|
|
#changesBox {
|
|
margin-top: 20px;
|
|
padding: 10px;
|
|
border: 1px solid #aaa;
|
|
border-radius: 5px;
|
|
background: #f7f7f7;
|
|
width: 350px;
|
|
}
|
|
|
|
#changesBox h4 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
/* ===============================
|
|
Output
|
|
=============================== */
|
|
|
|
pre#out {
|
|
margin-top: 20px;
|
|
padding: 15px;
|
|
background: #eee;
|
|
border-radius: 6px;
|
|
max-height: 400px;
|
|
overflow: auto;
|
|
font-size: 14px;
|
|
}
|
|
|
|
/* ===============================
|
|
Progress bar
|
|
=============================== */
|
|
|
|
#progressContainer {
|
|
width: 100%;
|
|
background: #ddd;
|
|
height: 25px;
|
|
border-radius: 5px;
|
|
margin-top: 20px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#progressBar {
|
|
height: 100%;
|
|
width: 0%;
|
|
background: #4caf50;
|
|
transition: width 0.3s linear;
|
|
}
|
|
|
|
#scanInfo {
|
|
font-family: monospace;
|
|
margin-top: 10px;
|
|
font-size: 16px;
|
|
}
|