qotnews/webapp/static/global.css

30 lines
502 B
CSS
Raw Normal View History

2020-11-27 00:43:47 +00:00
body {
2020-12-01 03:47:04 +00:00
margin: 0;
font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
margin-bottom: 50vh;
2020-11-27 00:43:47 +00:00
}
a {
2020-12-01 03:47:04 +00:00
color: inherit;
2020-11-27 00:43:47 +00:00
}
2020-12-02 00:03:16 +00:00
pre,
2020-11-27 00:43:47 +00:00
code {
2020-12-01 03:47:04 +00:00
font-family: menlo, inconsolata, monospace;
font-size: calc(1em - 2px);
color: #555;
background-color: #f0f0f0;
padding: 0.2em 0.4em;
border-radius: 2px;
2020-11-27 00:43:47 +00:00
}
2020-12-02 00:03:16 +00:00
pre {
max-width: 100%;
overflow: auto;
}