CZ-English / styles /styles.css
Shih-hungg's picture
Styles for toolbar
7b9bf15
raw
history blame contribute delete
893 Bytes
.fullscreen-editor {
position: relative;
transition: all 0.3s ease;
}
.fullscreen-editor:focus-within {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1000;
background: transparent;
padding: 80px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 0;
}
.fullscreen-editor:focus-within textarea {
height: 80vh !important;
width: 60vw !important;
font-size: 16px;
line-height: 1.5;
padding: 50px;
border: 3px solid #16214d !important;
border-radius: 4px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
/* Toolbar styling */
.toolbar {
border: 1px solid #4c4949;
border-radius: 8px;
padding: 5px;
margin: 5px 5px 10px 5px;
/* background-color: #f8f9fa; */
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.toolbar button {
margin: 0 2px;
}