aboutsummaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2021-08-21 18:28:30 -0400
committerMitchell Riedstra <mitch@riedstra.dev>2021-08-21 18:28:30 -0400
commit47dca324a446bf088164a8e27404c2b8db89ccf5 (patch)
treecd6407bd09ee5acc027fc69a51d98156a6ab7e9a /style.css
parentd25b274356451623382d18d2e0e190f407dbcf9f (diff)
downloadpaste-47dca324a446bf088164a8e27404c2b8db89ccf5.tar.gz
paste-47dca324a446bf088164a8e27404c2b8db89ccf5.tar.xz
Turn it into a simple rough draft of an API driven pastebin
Diffstat (limited to 'style.css')
-rw-r--r--style.css71
1 files changed, 0 insertions, 71 deletions
diff --git a/style.css b/style.css
deleted file mode 100644
index 472b18c..0000000
--- a/style.css
+++ /dev/null
@@ -1,71 +0,0 @@
-nav {
- border-bottom: 3px solid #000;
- padding-bottom: 10px;
-}
-a {
- text-decoration: none;
- color: #268bd2;
-}
-a:visited {
- color: #d22653;
-}
-a:hover {
- text-decoration: underline;
-}
-
-code {
- color: #9672d5;
- /* background-color: #ff000020; */
- /* padding: 2px; */
- font-size: .8em;
- font-family: "Roboto Mono", "Monaco", "Lucida Console", "DejaVu Sans Mono", "monospace";
-}
-
-pre code {
- color: #000;
- background-color: #FFFFEA;
- display: block;
- padding: 10px;
- border: 1px solid;
- line-height: 1.1;
- overflow: auto;
-}
-
-
-blockquote {
- border-left: 4px solid #aaa;
- padding-left: 1em;
-}
-
-/*
- * The following was shamelessly ripped from:
- * http://bettermotherfuckingwebsite.com/
- * And subsequently modified to suit my needs
- */
-
-body {
- margin: 40px auto;
- max-width: 80%;
- line-height: 1.6;
- font-size: 1em;
- color: #444;
- padding: 0 10px;
- /* Added because some browsers don't default to white */
- background-color: #fff;
-}
-
-img {
- width: 100%;
- height: auto;
-}
-
-h1,h2,h3 {
- line-height: 1.2
-}
-
-@media screen and (min-width: 960px) {
- body {
- max-width: 768px;
- }
-}
-