mirror of
https://github.com/mon/PocketVoltex.git
synced 2026-09-25 16:17:54 +03:00
55 lines
676 B
CSS
55 lines
676 B
CSS
body, html {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
.center {
|
|
position: relative;
|
|
display:flex;
|
|
justify-content: center;
|
|
height: 100%;
|
|
}
|
|
|
|
.configBox {
|
|
background-image: url("../img/topdown-small.png");
|
|
width: 800px;
|
|
height: 571px;
|
|
}
|
|
|
|
.connect {
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.connect > button {
|
|
font-size: 40pt;
|
|
}
|
|
|
|
.configOptions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.colourPicker {
|
|
width: 50px;
|
|
height: 20px;
|
|
}
|
|
|
|
.pinEntry {
|
|
width: 40px;
|
|
}
|
|
|
|
.nestedSetting {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.disabled {
|
|
opacity: 0.4;
|
|
} |