23 lines
385 B
CSS
23 lines
385 B
CSS
* {
|
|
font-family: Consolas, monospace !important;
|
|
}
|
|
|
|
.form-control:focus {
|
|
outline: none !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
.static-backdrop.fade {
|
|
position: relative;
|
|
display: none;
|
|
}
|
|
|
|
.static-backdrop.show {
|
|
position: fixed;
|
|
display: block;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100vh;
|
|
background-color: rgb(0, 0, 0, 0.1);
|
|
} |