2020-02-21 02:18:31 +00:00
|
|
|
body {
|
2021-01-03 20:30:38 +00:00
|
|
|
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
2020-02-21 02:18:31 +00:00
|
|
|
font-size: 14px;
|
|
|
|
max-width: 680px;
|
|
|
|
padding: 0 1em;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0 auto;
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
counter-reset: test-id;
|
2020-04-04 20:56:06 +00:00
|
|
|
overflow-y: scroll;
|
2020-02-21 02:18:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 2em;
|
|
|
|
margin: 0.67em 0;
|
|
|
|
}
|
|
|
|
|
2020-04-04 20:56:06 +00:00
|
|
|
p {
|
|
|
|
margin: 0.33em 0;
|
|
|
|
}
|
|
|
|
|
2020-05-10 18:09:04 +00:00
|
|
|
h1+p,
|
|
|
|
h1+y-description {
|
2020-04-04 20:56:06 +00:00
|
|
|
margin-top: -0.67em;
|
|
|
|
}
|
|
|
|
|
|
|
|
a, a:visited {
|
|
|
|
color: #1080c0;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2020-05-02 17:05:43 +00:00
|
|
|
.test,
|
|
|
|
y-test {
|
|
|
|
display: block;
|
2020-02-21 02:18:31 +00:00
|
|
|
background-color: #ffffff;
|
|
|
|
margin: 1em 0;
|
|
|
|
padding: 0.5em;
|
|
|
|
box-shadow: rgba(64, 64, 64, 0.3) 0px 1px 2px 0px, rgba(64, 64, 64, 0.15) 0px 1px 3px 1px;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
|
2021-01-03 20:30:38 +00:00
|
|
|
.test::before,
|
|
|
|
y-test::before {
|
|
|
|
content: 'Test ' counter(test-id);
|
2020-02-21 02:18:31 +00:00
|
|
|
display: block;
|
|
|
|
counter-increment: test-id;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
border-bottom: 1px solid #d8d8d8;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2020-04-04 20:56:06 +00:00
|
|
|
|
2020-05-02 17:05:43 +00:00
|
|
|
.description,
|
|
|
|
y-description {
|
2020-04-04 20:56:06 +00:00
|
|
|
color: #444444;
|
|
|
|
font-style: italic;
|
2020-05-02 17:05:43 +00:00
|
|
|
display: block;
|
|
|
|
padding-bottom: 0.5em;
|
2020-04-04 20:56:06 +00:00
|
|
|
}
|