summaryrefslogtreecommitdiff
path: root/styles/style.css
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2022-01-10 22:37:25 -0500
committerKyle Gunger <kgunger12@gmail.com>2022-01-10 22:37:45 -0500
commit340d024e5fc09d1ab89062ece7b8788786ba564b (patch)
tree594d7e1f695b25ca24084474dd00f4a6927bd100 /styles/style.css
parent972392448a8c14bf896516268d304baf961c1648 (diff)
Testing theme changer
Diffstat (limited to 'styles/style.css')
-rw-r--r--styles/style.css47
1 files changed, 47 insertions, 0 deletions
diff --git a/styles/style.css b/styles/style.css
new file mode 100644
index 0000000..e778134
--- /dev/null
+++ b/styles/style.css
@@ -0,0 +1,47 @@
+* {
+ font-family: "Roboto", sans-serif;
+ background-color: var(--main-bg);
+ color: var(--main-color);
+}
+
+h1::after {
+ display: block;
+
+ width: 100%;
+ height: 3px;
+
+ background-color: var(--divider-color);
+
+ content: '';
+}
+
+a {
+ color: var(--link-color);
+ text-decoration: none;
+ transition-duration: 0.2s;
+}
+
+a:hover {
+ color: var(--link-color);
+}
+
+a:active {
+ color: var(--link-color);
+}
+
+span.end {
+ display: block;
+ margin-top: 10px;
+ text-emphasis: bold;
+}
+
+span.end::before {
+ display: block;
+
+ width: 100%;
+ height: 3px;
+
+ background-color: var(--divider-color);
+
+ content: '';
+}