p-view/assets/style.css

45 lines
463 B
CSS
Raw Normal View History

2020-05-31 23:06:17 +00:00
body {
2020-12-14 01:59:31 +00:00
background: #141415;
font-family: 'Liberation Mono', monospace;
color: #cdcdcd;
2020-05-31 23:06:17 +00:00
}
.preview, .box {
padding: 10px;
2020-12-14 01:59:31 +00:00
margin-top: 10px;
background-color: #222;
2020-05-31 23:06:17 +00:00
}
.wrapper {
2020-12-14 01:59:31 +00:00
max-width: 700px;
2020-05-31 23:06:17 +00:00
margin: 0 auto;
}
a {
2020-12-14 02:31:34 +00:00
color: #aac;
}
h1 a {
2020-05-31 23:06:17 +00:00
text-decoration: none;
2020-12-14 01:59:31 +00:00
color: #cdcdcd;
2020-05-31 23:06:17 +00:00
}
2020-12-14 02:31:34 +00:00
h1 a::before {
2020-12-14 01:59:31 +00:00
content: "#";
2020-12-14 02:31:34 +00:00
color: #aac;
2020-12-14 01:59:31 +00:00
margin-right: 10px;
2020-05-31 23:06:17 +00:00
}
2020-12-14 02:31:34 +00:00
h1 a:hover::before {
2020-12-14 01:59:31 +00:00
text-decoration: underline;
2020-05-31 23:06:17 +00:00
}
2020-12-14 01:59:31 +00:00
.preview h1 {
margin: 0;
padding: 0;
margin-bottom: 5px;
2020-05-31 23:06:17 +00:00
}