stylus/install-usercss/install-usercss.css

212 lines
2.9 KiB
CSS
Raw Normal View History

2017-09-01 10:23:50 +00:00
body {
margin: 0;
font: 12px arial, sans-serif;
2017-09-24 03:39:04 +00:00
background: white;
2017-09-01 10:23:50 +00:00
}
2017-11-11 05:13:34 +00:00
a {
color: #000;
transition: color .5s;
text-decoration-skip: ink;
}
a:hover {
color: #666;
}
2017-11-09 00:01:45 +00:00
img.icon,
svg.icon {
2017-10-06 07:25:37 +00:00
height: 1.4em;
vertical-align: middle;
}
2017-09-01 10:23:50 +00:00
.container {
display: flex;
2017-09-24 08:54:21 +00:00
height: 100vh;
2017-09-01 10:23:50 +00:00
align-items: stretch;
}
.main {
display: flex;
flex-direction: column;
flex-grow: 1;
}
.header,
.warnings {
2017-09-24 08:54:21 +00:00
flex: 0 0 280px;
box-sizing: border-box;
2017-09-01 10:23:50 +00:00
padding: 15px;
border-right: 1px dashed #aaa;
box-shadow: 0 0 50px -18px black;
2017-09-15 05:40:04 +00:00
overflow-wrap: break-word;
overflow-y: auto;
z-index: 100;
}
.header:not(.meta-init) {
visibility: hidden;
}
.header.meta-init-error {
display: none;
}
.warnings {
display: none;
padding-bottom: 0;
flex-basis: auto;
background: #ffe2e2;
border-right: none;
border-bottom: 1px dashed #aaa;
}
.has-warnings .warnings {
display: initial;
}
.warning {
font-weight: bold;
font-size: 125%;
margin-bottom: 1em;
}
.warning pre {
overflow-wrap: break-word;
white-space: pre-wrap;
margin: 1ex 0 0;
font-weight: normal;
font-size: 80%;
2017-09-01 10:23:50 +00:00
}
2017-09-24 03:39:04 +00:00
.header > :first-child {
2017-09-01 10:23:50 +00:00
margin-top: 0;
}
2017-09-05 02:32:30 +00:00
h1 small {
font-size: 0.6em;
2017-09-01 10:23:50 +00:00
}
2017-09-13 08:54:09 +00:00
.meta-version::before {
content: " v";
}
2017-09-01 10:23:50 +00:00
.actions {
margin-bottom: 1em;
2017-09-01 10:23:50 +00:00
}
2017-09-19 00:23:47 +00:00
.actions label {
2017-09-24 08:54:21 +00:00
max-width: -moz-fit-content;
max-width: fit-content;
2017-09-10 14:05:44 +00:00
display: flex;
align-items: center;
2017-09-18 21:10:45 +00:00
margin: 0.5em 0;
2017-09-10 14:05:44 +00:00
}
.install {
padding: 1ex 1em;
font-weight: bold;
margin-bottom: 1ex;
}
2017-09-19 00:23:47 +00:00
.actions label input {
2017-09-10 14:05:44 +00:00
margin: 0 0.5em 0 0;
2017-09-24 08:54:21 +00:00
flex: 0 0 auto;
}
.actions label span {
min-width: 0;
2017-09-01 10:23:50 +00:00
}
2017-09-05 02:32:30 +00:00
.external {
text-align: center;
}
.external > * {
margin: 0 7.5px;
}
li {
margin-left: -2em;
}
2017-09-10 14:05:44 +00:00
.main {
2017-09-15 05:40:04 +00:00
overflow: hidden;
2017-09-24 08:54:21 +00:00
}
.main .CodeMirror {
height: auto;
border: none;
2017-09-10 14:05:44 +00:00
}
/************ reponsive layouts ************/
@media (max-width:10in) {
.container {
flex-direction: column;
}
.header {
flex-basis: auto;
border-right: none;
border-bottom: 1px dashed #AAA;
max-height: 50%;
overflow-x: auto;
overflow-y: hidden;
}
.has-warnings .header {
min-height: 4em;
max-height: 20%;
}
.warnings {
max-height: 20%;
}
.warning:not(:last-child) {
border-bottom: 1px dashed #b57c7c;
padding-bottom: 1em;
}
.header,
.warning {
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
}
h1 {
-webkit-column-span: all;
column-span: all;
margin-bottom: .5em;
}
.actions {
display: flex;
}
.install {
margin-right: 1em;
}
}
@media (max-width:7in) {
.header,
.warning {
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
}
}
2017-11-22 13:48:42 +00:00
@media (max-width:4in) {
.header {
overflow-x: hidden;
overflow-y: auto;
2017-11-22 14:23:06 +00:00
max-height: 100%;
}
.header,
.warning {
-webkit-column-count: 1;
-moz-column-count: 1;
column-count: 1;
}
.warning {
border: none;
padding-bottom: unset;
}
}