aboutsummaryrefslogtreecommitdiffstats
path: root/dev-docs/src/pages/index.module.css
diff options
context:
space:
mode:
Diffstat (limited to 'dev-docs/src/pages/index.module.css')
-rw-r--r--dev-docs/src/pages/index.module.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-docs/src/pages/index.module.css b/dev-docs/src/pages/index.module.css
new file mode 100644
index 0000000..4047102
--- /dev/null
+++ b/dev-docs/src/pages/index.module.css
@@ -0,0 +1,27 @@
+/**
+ * CSS files with the .module.css suffix will be treated as CSS modules
+ * and scoped locally.
+ */
+
+.heroBanner {
+ padding: 4rem 0;
+ text-align: center;
+ position: relative;
+ overflow: hidden;
+}
+
+[data-theme="dark"] .heroBanner {
+ color: #fff;
+}
+
+@media screen and (max-width: 996px) {
+ .heroBanner {
+ padding: 2rem;
+ }
+}
+
+.buttons {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}