This repository has been archived on 2024-07-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Original-Bds-Maneger-GUI/assents/index.css
T
2020-10-14 15:18:26 -03:00

51 lines
892 B
CSS

body{
transition-duration: 1.5s;
background-color: rgb(169, 169, 169);
}
.port-left {
float: left;
margin-bottom: 50px;
}
.port-right {
float: right;
}
.port-center {
margin-left: 1.9%;
}
.port {
color: black;
}
textarea {
resize: none;
background-color: rgb(94, 94, 94);
border-radius: 4px;
transition: all 2s ease;
color: white
}
input, select{
border: none;
background-color: transparent;
color: rgb(6 6 6 / 82%);
}
.sizess{
height: 25px;
align-content: center;
}
.start_buttom, .stop_buttom, .restart_buttom{
text-align: center;
}
@media screen and (min-width: 1000px){
.port-left, .port-right, .port-center {
display: inline-block;
vertical-align: middle;
flex-flow: row wrap;
width: 50%;
}
body{
color: rgb(6 6 6 / 82%);
}
textarea {
background-color: white;
color: black
}
}