42 lines
702 B
CSS
42 lines
702 B
CSS
html,
|
|
body,
|
|
#__next {
|
|
padding: 0;
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.gutter {
|
|
position: relative;
|
|
transition: border-color 0.3s, background-color 0.3s;
|
|
}
|
|
|
|
.gutter-vertical {
|
|
margin-top: -4px;
|
|
}
|
|
.gutter-horizontal {
|
|
margin-left: -4px;
|
|
}
|
|
.gutter-vertical:hover {
|
|
cursor: row-resize;
|
|
background-color: rgba(255, 255, 255, 0.25);
|
|
}
|
|
html.light .gutter-vertical:hover {
|
|
background-color: rgba(0, 0, 0, 0.25);
|
|
}
|
|
.gutter-horizontal:hover {
|
|
cursor: col-resize;
|
|
background-color: rgba(255, 255, 255, 0.25);
|
|
}
|
|
|
|
html.light .gutter-horizontal:hover {
|
|
background-color: rgba(0, 0, 0, 0.25);
|
|
}
|