mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 01:23:52 +00:00
37 lines
644 B
SCSS
37 lines
644 B
SCSS
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2020 The Pybricks Authors
|
|
|
|
// Override default variables before the import
|
|
$body-bg: #e8e8e8;
|
|
|
|
// Import Bootstrap and its default variables
|
|
@import '~bootstrap/scss/bootstrap';
|
|
|
|
.terminal {
|
|
height: 15vh;
|
|
}
|
|
|
|
.container-col {
|
|
padding: 0px;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
.status-bar {
|
|
background-color: #0088ce;
|
|
}
|
|
|
|
.btn-light, .btn-light:focus {
|
|
background-color: #0088ce;
|
|
border-width: 0px;
|
|
}
|
|
|
|
.btn-light:disabled {
|
|
background-color: #65acd0;
|
|
border-width: 0px;
|
|
}
|
|
|
|
.btn-light:hover, .btn-light:active {
|
|
background-color: #005885 !important;
|
|
border-width: 0px;
|
|
}
|