aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.css
diff options
context:
space:
mode:
Diffstat (limited to 'index.css')
-rw-r--r--index.css41
1 files changed, 41 insertions, 0 deletions
diff --git a/index.css b/index.css
new file mode 100644
index 0000000..4d41c21
--- /dev/null
+++ b/index.css
@@ -0,0 +1,41 @@
+body {
+ display: table;
+ height: calc(100vh - 100px);
+}
+
+ul {
+ list-style-type: none;
+ padding: 0 !important;
+}
+
+ul li {
+ color: var(--text-normal);
+ background-color: var(--background-code);
+ padding: 32px;
+ margin: 16px;
+ border-radius: 16px;
+ list-style-type: none;
+ font-size: 16px;
+}
+
+ul li a {
+ color: var(--text-code);
+ font-size: 1.3em;
+ line-height: 1.3;
+ font-weight: 700;
+ text-decoration: none;
+}
+
+ul li a:after {
+ content: "\a";
+ white-space: pre;
+}
+
+.index-note {
+ display: table-footer-group;
+}
+
+.index-note p {
+ text-align: center;
+ font-size: 15px;
+}