summaryrefslogtreecommitdiff
path: root/styles.css
diff options
context:
space:
mode:
authorBlaster4385 <blaster4385@tablaster.dev>2024-04-28 11:43:08 +0530
committerBlaster4385 <blaster4385@tablaster.dev>2024-04-29 21:04:10 +0530
commit8c968e21ffe78670871dea395c63fbeca68bc04d (patch)
treefd26b2c8c6bf8ad0d109a42ab551db1edad84f45 /styles.css
parentcf454871b15fcfccd42adfac762deabe3513d2ad (diff)
refactor: rewrite in go
- Bye Bye JavaScript
Diffstat (limited to 'styles.css')
-rw-r--r--styles.css94
1 files changed, 0 insertions, 94 deletions
diff --git a/styles.css b/styles.css
deleted file mode 100644
index 242d9d8..0000000
--- a/styles.css
+++ /dev/null
@@ -1,94 +0,0 @@
-:root {
- --font-family: 'JetBrains Mono', monospace;
- --color-background: #282828;
- --color-text: #ebdbb2;
- --color-accent: #fabd2f;
- --color-highlight: #b8bb26;
-}
-
-body {
- font-family: var(--font-family);
- background-color: var(--color-background);
- color: var(--color-text);
- margin: 0;
- padding: 0;
-}
-
-body::-webkit-scrollbar {
- width: 11px;
-}
-
-body::-webkit-scrollbar-track {
- background: var(--color-background);
-}
-body::-webkit-scrollbar-thumb {
- background-color: var(--color-text) ;
- border-radius: 6px;
- border: 3px solid var(--color-background);
-}
-
-body::-webkit-scrollbar-thumb:hover {
- border: 1px solid var(--color-background);
-}
-
-.container {
- margin: auto;
- max-width: 1280px;
-}
-
-h1,
-h2,
-h3,
-h4,
-h5,
-h6 {
- font-weight: bold;
- color: var(--color-accent);
-}
-
-a {
- color: inherit;
- text-decoration: none;
-}
-
-code {
- background-color: #444;
- display: inline-block;
- padding: 8px;
- border-radius: 4px;
- color: #b8bb26;
-}
-
-#markdown {
- margin: 20px;
-}
-
-#header {
- text-align: center;
- padding: 20px;
-}
-
-ul {
- list-style-type: none;
- padding-left: 20px;
-}
-
-li::before {
- content: "*";
- color: var(--color-highlight);
- margin-right: 10px;
-}
-
-li {
- margin-bottom: 10px;
-}
-
-p {
- font-size: 1.5 rem;
- line-height: 1.5;
- text-align: justify;
-}
-
-hr {
- border: 1px solid var(--color-text);
-} \ No newline at end of file