2020-06-17 09:59:04 +00:00
|
|
|
.power-screen__breaker-container {
|
2020-06-18 13:18:02 +00:00
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
|
|
|
margin-bottom: 5px;
|
2020-06-17 09:59:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.breaker-wrapper {
|
2020-06-17 11:03:48 +00:00
|
|
|
display: flex;
|
2020-06-18 13:18:02 +00:00
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2020-06-18 13:41:21 +00:00
|
|
|
.breaker-off {
|
2020-06-18 13:18:02 +00:00
|
|
|
// background-color: #99E3C0;
|
2020-06-18 13:41:21 +00:00
|
|
|
background-color: #1F1115;
|
2020-06-18 13:18:02 +00:00
|
|
|
}
|
|
|
|
|
2020-06-18 13:41:21 +00:00
|
|
|
.breaker-on {
|
|
|
|
background-color: #1F1115;
|
2020-06-18 13:18:02 +00:00
|
|
|
//background-color: #E40141 - on;
|
|
|
|
}
|
|
|
|
|
|
|
|
.power-screen__breaker-parent {
|
|
|
|
align-self: center;
|
|
|
|
width: fit-content;
|
2020-06-17 09:59:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.breaker-buttons__wrapper {
|
2020-06-17 11:03:48 +00:00
|
|
|
display: flex;
|
2020-06-18 13:18:02 +00:00
|
|
|
justify-content: space-evenly;
|
2020-06-17 11:03:48 +00:00
|
|
|
flex-direction: column;
|
2020-09-06 23:16:22 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.breaker-buttons__wrapper > button {
|
|
|
|
cursor: pointer;
|
2020-06-17 09:59:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.breaker-label__wrapper {
|
2020-06-18 13:41:21 +00:00
|
|
|
background-color: #1F1115;
|
|
|
|
// background-color: #C23457;
|
2020-06-18 13:18:02 +00:00
|
|
|
padding: 10px;
|
|
|
|
flex: 1;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.power-screen__voltage-container {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
}
|
|
|
|
|
|
|
|
#power-display__inner > div.power-screen__votage-output-container {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
2020-06-17 09:59:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.breaker-label__text {
|
2020-06-18 13:18:02 +00:00
|
|
|
// background-color: #CDA08E;
|
|
|
|
// background-color: #1F1115;
|
2020-06-17 11:03:48 +00:00
|
|
|
color: black;
|
2020-06-18 13:18:02 +00:00
|
|
|
font-size: 14px;
|
2020-06-17 11:03:48 +00:00
|
|
|
text-transform: uppercase;
|
2020-06-18 13:18:02 +00:00
|
|
|
border: 2px solid black;
|
|
|
|
padding: 4px;
|
2020-06-18 13:41:21 +00:00
|
|
|
background-color: darken($color: #c2a693, $amount: 50%) ; // activated
|
2020-06-18 13:18:02 +00:00
|
|
|
margin: 0 auto;
|
2020-06-17 11:03:48 +00:00
|
|
|
}
|
2020-06-17 09:59:04 +00:00
|
|
|
|
2020-06-17 11:03:48 +00:00
|
|
|
.breaker-button {
|
2020-06-18 13:18:02 +00:00
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
2020-06-18 16:12:04 +00:00
|
|
|
outline: none;
|
2020-06-17 11:03:48 +00:00
|
|
|
}
|