51 lines
768 B
SCSS
51 lines
768 B
SCSS
|
|
||
|
|
||
|
.open-btn{
|
||
|
height: max-content;
|
||
|
}
|
||
|
|
||
|
.button-lang {
|
||
|
//height: 3.5vh;
|
||
|
width: 5%;
|
||
|
min-width: max-content;
|
||
|
border: none;
|
||
|
border-radius: 5px;
|
||
|
color: white;
|
||
|
font-weight: bolder;
|
||
|
margin: 2%;
|
||
|
margin-left: 0;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
padding: 2%;
|
||
|
|
||
|
& > svg{
|
||
|
height: 120%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.button-lang-python {
|
||
|
background-color: #045aff;
|
||
|
box-shadow: 0px 0px 10px 1px rgba(11, 2, 72, 0.72);
|
||
|
&:hover{
|
||
|
background-color: #0e45ac;
|
||
|
box-shadow: 0px 0px 10px 1px rgba(11, 2, 65, 0.72);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
.btn-disabled{
|
||
|
background-color: grey;
|
||
|
&:hover{
|
||
|
background-color: grey;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.input-container {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
& > svg {
|
||
|
height: 100%;
|
||
|
width: 5%;
|
||
|
}
|
||
|
}
|