Files

190 lines
2.6 KiB
CSS
Raw Permalink Normal View History

2018-06-25 15:59:59 +02:00
/* your custom css */
.mainContainer .wrapper .post ol {
background-color: #fff;
border-radius: 8px;
padding: 30px 20px 20px 40px;
}
.mainContainer .wrapper p, .blockElement p, .mainContainer .wrapper ul li, .mainContainer .wrapper ol li {
line-height: 1.3;
}
.darkBackground {
background-color: #4A5AB5;
}
.container .wrapper .imageAlignSide h2 {
font-weight: 500;
}
.container .wrapper .imageAlignSide p {
text-align: left;
}
.todo {
display: flex;
justify-content: center;
align-items: center;
font: 2em;
font-weight: bold;
}
2018-06-29 14:30:46 +02:00
main {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%
}
#selection {
padding: 10px;
}
#extension {
border: 40px solid #ddd;
border-width: 55px 7px;
border-radius: 40px;
margin: 50px auto;
width: 30vh;
height: 50vh;
overflow: hidden;
}
#extension iframe {
border: 0;
height: 100%;
width: 100%
}
2018-06-25 15:59:59 +02:00
@media only screen and (min-device-width: 360px) and (max-device-width: 736px) {
}
@media only screen and (min-width: 1024px) {
}
@media only screen and (max-width: 1023px) {
}
@media only screen and (min-width: 1400px) {
}
@media only screen and (min-width: 1500px) {
}
2018-09-28 10:07:58 +02:00
/* Try */
html, body {
margin: 0;
}
.parinfer-error {
background: #FFBEBE;
color: black !important;
}
.parinfer-paren-trail {
opacity: 0.4;
}
.CodeMirror {
box-sizing: border-box;
padding: 10px;
height: 100% !important;
}
#wrapper {
display: flex;
flex-direction: row;
2018-10-22 12:32:21 -04:00
/* height: 100vh; */
2018-09-28 10:07:58 +02:00
}
main {
width: 75%;
overflow: auto;
}
#content {
height: 80vh;
}
#errors {
height: 20vh;
overflow: auto;
}
#errors.ok {
background-color: #E0F2F1;
}
#errors.warnings {
background-color: #FCE4EC;
}
#errors.errors {
background-color: #FCE4EC;
}
#errors div {
padding: 10px;
}
2018-10-22 12:32:21 -04:00
2018-09-28 10:07:58 +02:00
#panel {
display: flex;
flex-direction: column;
align-items: center;
2018-10-22 12:32:21 -04:00
}
2018-10-23 08:51:53 +02:00
#side-column {
display: flex;
flex-direction: column;
width: 25%;
justify-content: space-between;
}
2018-10-22 12:32:21 -04:00
#docs {
2018-10-23 08:51:53 +02:00
overflow-y: scroll;
height: 50vh;
box-shadow: 0px 0px 1px #666 inset;
2018-10-22 12:32:21 -04:00
}
#docs h6 {
2018-10-23 08:51:53 +02:00
margin: 0px;
margin-bottom: 0.5em;
padding-left: 0.5em;
padding-top: 10px;
padding-bottom: 10px;
background-color: #d4d4d4;
2018-10-22 12:32:21 -04:00
}
#docs li {
2018-10-23 08:51:53 +02:00
list-style: none;
2018-10-22 12:32:21 -04:00
}
#docs ul {
2018-10-23 08:51:53 +02:00
padding-left: 0.5em;
2018-10-22 12:32:21 -04:00
}
#docs pre {
2018-10-23 08:51:53 +02:00
font-family: monospace;
font-size: 0.9em;
margin-bottom: 0px;
color: #5f9ea0;
vertical-align: top;
2018-09-28 10:07:58 +02:00
}
#panel p {
margin: 10px;
}
#qr {
z-index: -1;
}
#qr-wrapper {
display: flex;
flex-direction: column;
align-items: center;
2018-10-22 12:32:21 -04:00
}