p-view/assets/style.css

42 lines
435 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;
}
2020-12-14 01:59:31 +00:00
2020-05-31 23:06:17 +00:00
a {
text-decoration: none;
2020-12-14 01:59:31 +00:00
color: #cdcdcd;
2020-05-31 23:06:17 +00:00
}
2020-12-14 01:59:31 +00:00
a::before {
content: "#";
color: #acc;
margin-right: 10px;
2020-05-31 23:06:17 +00:00
}
2020-12-14 01:59:31 +00:00
a:hover::before {
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
}