mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-10 03:10:44 +00:00
39 lines
678 B
CSS
39 lines
678 B
CSS
#inferenceRuleField {
|
|
display: flex;
|
|
align-items: center;
|
|
border: 2px solid #e8e8e8;
|
|
border-radius: 5px;
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
margin-top: 0.25em;
|
|
margin-bottom: 0.25em;
|
|
padding: 0px;
|
|
}
|
|
|
|
#headerField {
|
|
border-bottom: 2px solid #e8e8e8;
|
|
background-color: #f8f8f8;
|
|
display: grid;
|
|
grid-template-columns: 1fr repeat(1, auto) 1fr;
|
|
align-items: center;
|
|
width: 100%;
|
|
padding: 0.5em 0em;
|
|
border-radius: 5px 5px 0 0;
|
|
}
|
|
|
|
#ruleName {
|
|
margin: 1px;
|
|
}
|
|
|
|
#copyButton {
|
|
margin-left: auto;
|
|
margin-right: 10%;
|
|
}
|
|
|
|
#main {
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
margin: 0px;
|
|
padding-top: 0.2em;
|
|
}
|