33 lines
522 B
CSS
33 lines
522 B
CSS
/* .body {
|
|
margin: 50px 50px 50px 50px;
|
|
}
|
|
|
|
#editor {
|
|
border: 10px solid red;
|
|
} */
|
|
|
|
body {
|
|
margin: 0 0 0 0;
|
|
}
|
|
|
|
#settings {
|
|
line-height: 2;
|
|
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
|
|
top: 0px;
|
|
width: 100%;
|
|
position: fixed;
|
|
padding: 8 8 8 8;
|
|
background-color: rgb(230, 230, 230);
|
|
z-index: 2;
|
|
float: left;
|
|
overflow: auto;
|
|
align-items: center;
|
|
}
|
|
|
|
#settings div {
|
|
width: fit-content;
|
|
position: relative;
|
|
overflow: hidden;
|
|
float: left;
|
|
margin-right: 20;
|
|
} |