Packages

Lightweight approval testing for Elixir

Current section

Files

Jump to
approval priv assets diff.css
Raw

priv/assets/diff.css

/* Hacked together based on:
* https://jgthms.com/web-design-in-4-minutes/
*/
:root {
--color-hi: #f56a6a;
}
* {
box-sizing: border-box;
}
body {
color: #555;
margin: 0 auto;
font-family: "Helvetica", "Arial", sans-serif;
line-height: 1.5;
padding: 24pt 24pt;
}
h1 {
font-size: 2.5em
}
h2 {
font-size: 1em;
}
h3 {
font-size: 1.5em
}
h2, h3 {
margin-top: 0.4em;
}
h1, h2, strong {
color: #333;
}
code, pre {
background: #eee;
}
code {
padding: 2px 4px;
vertical-align: text-bottom;
}
pre {
border-left: 2px solid #bbb;
padding: 1em;
}
a {
color: var(--color-hi);
}
blockquote, q {
border-left: solid 4px #bbb;
font-style: italic;
margin: 0 0 2em 0;
padding: 0.5em 0 0.5em 2em;
}
blockquote::before, blockquote::after, q::before, q::after {
content: '';
content: none;
}