aboutsummaryrefslogtreecommitdiff
path: root/v2/src/content/static/styles.css
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-04-04 08:33:41 -0300
committerEuAndreh <eu@euandre.org>2023-04-04 08:43:15 -0300
commit08588f9907299b1a927e281d5c65b46b7cefa427 (patch)
tree860f8550c2efee35df9bfa1ef56e338f8331c2d1 /v2/src/content/static/styles.css
parentdynamic.mk: Use serve(1) as is (diff)
downloadeuandre.org-08588f9907299b1a927e281d5c65b46b7cefa427.tar.gz
euandre.org-08588f9907299b1a927e281d5c65b46b7cefa427.tar.xz
Revamp v2/
Diffstat (limited to 'v2/src/content/static/styles.css')
-rw-r--r--v2/src/content/static/styles.css149
1 files changed, 0 insertions, 149 deletions
diff --git a/v2/src/content/static/styles.css b/v2/src/content/static/styles.css
deleted file mode 100644
index 0ec67a8..0000000
--- a/v2/src/content/static/styles.css
+++ /dev/null
@@ -1,149 +0,0 @@
-/* General declarations */
-
-body {
- margin: 0px auto;
- padding: 1%;
- max-width: 750px;
-}
-
-.svg-icon {
- vertical-align: middle;
-}
-
-
-/* Navigation header */
-
-nav a {
- color: maroon;
- font-size: 18px;
- margin: 12px;
- text-decoration: none;
-}
-
-nav ul, nav li {
- display: inline;
-}
-
-nav ul li a {
- color: black;
- font-size: 14px;
- margin: 6px;
-}
-
-
-/* Article bodies */
-
-.timestamp {
- color: #555;
- font-size: 14px;
- font-style: italic;
-}
-
-blockquote {
- font-style: italic;
- color: dimgrey;
- padding-left: 10px;
- border-left: 3px solid #ccc;
-}
-
-ul.no-style {
- list-style-type: none;
-}
-
-ul.no-style li {
- margin: 20px 0px;
-}
-
-
-/* Footer */
-
-footer {
- font-size: 14px;
- margin-top: 30px;
- padding: 12px 0px 12px 0px;
-}
-
-footer li {
- list-style-type: none;
- margin-top: 10px;
-}
-
-footer li a {
- margin-left: 5px;
- user-select: none;
-}
-
-/* Code blocks */
-
-/* The "lineno" class is the default generated by Rouge for table-row in code blocks, see:
- https://github.com/rouge-ruby/rouge */
-.line-number, pre.lineno {
- margin-right: 3px;
- padding-right: 3px;
- border-right: 1px solid;
- border-color: hsla(0, 0%, 0%, 0.3);
- text-align: right;
- user-select: none;
-}
-
-.code-line {
- padding-left: 8px;
-}
-
-.code-block {
- padding: 6px 4px;
- display: block;
-}
-
-.code-block, pre.highlight {
- border: 1px solid #ccc;
- border-radius: 10px;
-}
-
-pre {
- overflow: auto;
-}
-
-
-/* Code block anchors */
-
-.line-number a, a.code-line-anchor {
- color: black;
- text-decoration: none;
-}
-
-a.code-line-anchor:hover {
- text-decoration: underline;
-}
-
-
-/* Header anchor */
-
-.header-anchor {
- color: black;
- text-decoration: none;
- display: block;
- margin-bottom: 15px;
-}
-
-.header-anchor {
-}
-
-
-.header-anchor img {
- margin-left: 5px;
- visibility: hidden;
-}
-
-.header-anchor:hover img {
- visibility: visible;
-}
-
-
-/* Plaintext code block links */
-
-.plaintext-link {
- margin: auto auto 0 auto;
- text-align: right;
- font-family: monospace;
-}