stylus/install-usercss/install-usercss.css

82 lines
990 B
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
}
* {
box-sizing: border-box;
}
.container {
display: flex;
min-height: 100vh;
align-items: stretch;
}
.header {
width: 280px;
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;
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
.warning {
padding: 3px 6px;
border: 1px dashed black;
border-color: #ef6969;
background: #ffe2e2;
}
.header .warning {
margin: 3px 0;
}
.actions {
margin: 15px 0;
}
2017-09-19 00:23:47 +00:00
.actions label {
2017-09-10 14:05:44 +00:00
width: fit-content;
2017-09-13 15:35:34 +00:00
width: -moz-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
}
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-01 10:23:50 +00:00
}
2017-09-05 02:32:30 +00:00
.external {
text-align: center;
}
.external > * {
margin: 0 7.5px;
}
2017-09-01 10:23:50 +00:00
.code {
padding: 2em;
}
2017-09-10 14:05:44 +00:00
.main {
flex-grow: 1;
2017-09-15 05:40:04 +00:00
overflow: hidden;
2017-09-15 00:11:18 +00:00
overflow-wrap: break-word;
2017-09-10 14:05:44 +00:00
}