79 lines
1.2 KiB
CSS
79 lines
1.2 KiB
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);
|
|
opacity: 0.95;
|
|
z-index: 2;
|
|
float: left;
|
|
overflow: auto;
|
|
align-items: center;
|
|
}
|
|
|
|
#settings div {
|
|
width: fit-content;
|
|
position: relative;
|
|
overflow: hidden;
|
|
float: left;
|
|
margin-right: 20;
|
|
}
|
|
|
|
#sidepanel {
|
|
position:fixed;
|
|
background-color: rgb(230, 230, 230);
|
|
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
|
|
top: 80px;
|
|
bottom:30px;
|
|
right:20px;
|
|
width: 500px;
|
|
opacity: 0.95;
|
|
padding: 20px;
|
|
border-radius: 20px;
|
|
z-index:10;
|
|
overflow: hidden;
|
|
display: none;
|
|
}
|
|
|
|
#sideheader {
|
|
width: 100%;
|
|
}
|
|
|
|
#sideheader svg {
|
|
position: absolute;
|
|
top: 20px;
|
|
right: 20px;
|
|
}
|
|
|
|
#sideheading {
|
|
text-align: center;
|
|
font-size: 2em;
|
|
font-style: normal;
|
|
}
|
|
|
|
#sidecontent {
|
|
/* position: absolute;
|
|
bottom: 20px;
|
|
left: 20px;
|
|
right: 20px; */
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
text-align: justify;
|
|
hyphens: auto;
|
|
word-wrap: break-word;
|
|
height: 80%;
|
|
} |