first commit
This commit is contained in:
81
tools/qalc/flaviut/style.css
Normal file
81
tools/qalc/flaviut/style.css
Normal file
@@ -0,0 +1,81 @@
|
||||
@import url("/styles/common.css");
|
||||
|
||||
body {
|
||||
max-width: 1300px;
|
||||
min-width: 300px;
|
||||
|
||||
background: var(--background);
|
||||
font-family: var(--mono-font);
|
||||
font-weight: 400;
|
||||
font-size: 15px;
|
||||
color: var(--text);
|
||||
caret-color: var(--primary);
|
||||
}
|
||||
|
||||
*, *::before, *::after {
|
||||
transition: all .3s ease-out;
|
||||
}
|
||||
|
||||
.cell-result {
|
||||
background: var(--background-lighter) !important;
|
||||
}
|
||||
|
||||
img {
|
||||
background: var(--background-lighter);
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
img:hover {
|
||||
filter: brightness(1.5);
|
||||
}
|
||||
|
||||
input {
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
/* original (except padding) */
|
||||
|
||||
.cell {
|
||||
margin: 1em 0;
|
||||
border-radius: 0.5em;
|
||||
border: 1px solid black;
|
||||
padding: 1em;
|
||||
}
|
||||
.cell-input {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
margin-bottom: 1em;
|
||||
padding: 0.6em;
|
||||
}
|
||||
.cell-result {
|
||||
border-radius: 0.75em;
|
||||
background: #eee;
|
||||
padding: 0.75em;
|
||||
}
|
||||
.cell-input,
|
||||
.cell-result {
|
||||
font-family: sans-serif;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
body {
|
||||
max-width: 600px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
.hide {
|
||||
display: none;
|
||||
}
|
||||
.plot {
|
||||
display: block;
|
||||
}
|
||||
.plot-err {
|
||||
color: red;
|
||||
width: 600px;
|
||||
height: 480px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
.plot-err h2 {
|
||||
text-align: center;
|
||||
}
|
||||
Reference in New Issue
Block a user