64 lines
836 B
CSS
64 lines
836 B
CSS
body {
|
|
background: #220044;
|
|
color: wheat;
|
|
}
|
|
|
|
.main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.program {
|
|
display: flex;
|
|
padding: 10px;
|
|
}
|
|
|
|
.program textarea {
|
|
background: #110022;
|
|
color: wheat;
|
|
width: 90%;
|
|
height: 30em;
|
|
border: solid 1px wheat;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.query {
|
|
display: flex;
|
|
padding: 10px;
|
|
}
|
|
|
|
.query input {
|
|
background: #110022;
|
|
color: wheat;
|
|
width: 90%;
|
|
border: solid 1px wheat;
|
|
border-radius: 5px;
|
|
padding: 5px;
|
|
}
|
|
|
|
.query input :focus {
|
|
outline: none;
|
|
}
|
|
|
|
.bindings {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.binding {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: #330055;
|
|
margin: 10px;
|
|
padding: 10px;
|
|
border: solid 1px wheat;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.binding ul {
|
|
margin: 0px;
|
|
padding-left: 1em;
|
|
}
|