68 lines
845 B
CSS
68 lines
845 B
CSS
|
|
#content .label {
|
|
width: 10ch;
|
|
padding: 0;
|
|
margin: 0;
|
|
color: #555;
|
|
}
|
|
|
|
#content div.project {
|
|
min-width: 40ch;
|
|
}
|
|
|
|
#content div.editor {
|
|
clear: both;
|
|
}
|
|
|
|
#content div.view {
|
|
clear: both;
|
|
}
|
|
|
|
#content div.editor div.right {
|
|
float: right;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
#content div.editor div.buttons {
|
|
text-align: center;
|
|
padding: 0;
|
|
}
|
|
|
|
#content div.editor div.buttons button,
|
|
#content div.editor div.buttons input {
|
|
margin-left: 1em;
|
|
}
|
|
|
|
#content div.view {
|
|
text-align: left;
|
|
}
|
|
|
|
#content div.flex{
|
|
align-items: inherit;
|
|
}
|
|
|
|
body #content{
|
|
max-width:none;
|
|
}
|
|
|
|
.buttons{
|
|
display: flex;
|
|
}
|
|
|
|
#content .bottom,
|
|
.bottom{
|
|
position: absolute;
|
|
bottom: 1rem;
|
|
}
|
|
|
|
#content .bottom.right,
|
|
.bottom.right{
|
|
position: absolute;
|
|
right: 1rem;
|
|
}
|
|
|
|
#content div.title {
|
|
font-size:1.5rem;
|
|
}
|