summaryrefslogtreecommitdiff
path: root/src/components/about/About.module.css
diff options
context:
space:
mode:
authorHaishan <[email protected]>2020-08-01 20:04:49 +0800
committerHaishan <[email protected]>2020-08-01 20:41:55 +0800
commit4ae2c5c2f319e15ecba245f8b679dbfcd0242a84 (patch)
treed269f9511ba922800c0308b04cf7d0386588270a /src/components/about/About.module.css
parent437733f4afe1eae86f946a8aa3336f58d9980d8c (diff)
feat: a simple about page
Diffstat (limited to 'src/components/about/About.module.css')
-rw-r--r--src/components/about/About.module.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/components/about/About.module.css b/src/components/about/About.module.css
new file mode 100644
index 0000000..632b3ee
--- /dev/null
+++ b/src/components/about/About.module.css
@@ -0,0 +1,18 @@
+.root {
+ padding: 6px 15px;
+ @media (--breakpoint-not-small) {
+ padding: 10px 40px;
+ }
+}
+
+.mono {
+ font-family: var(--font-mono);
+}
+
+.link {
+ color: var(--color-text-secondary);
+ display: inline-flex;
+}
+.link:hover {
+ color: var(--color-text-highlight);
+}