aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2019-12-10 16:52:14 +0100
committerKatharina Fey <kookie@spacekookie.de>2019-12-10 16:52:14 +0100
commita7851bb2a8583773fed590b34191715b7ec2d713 (patch)
treebbcc27102c549f3ea4ce4dcf2984e4fc56435a8c /static
Initial code dump of Rust and templates
Diffstat (limited to 'static')
-rw-r--r--static/main.css38
1 files changed, 38 insertions, 0 deletions
diff --git a/static/main.css b/static/main.css
new file mode 100644
index 0000000..a8eea22
--- /dev/null
+++ b/static/main.css
@@ -0,0 +1,38 @@
+body {
+ margin: 0;
+ font-family: sans-serif;
+}
+
+a {
+ text-decoration: none;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+.logo {
+ display: block;
+ max-width:230px;
+ max-height:75px;
+}
+
+.content {
+ padding: 15px;
+}
+
+.title {
+ margin: 0 auto;
+ display: flex;
+ max-width: 120ch;
+}
+
+.description {
+ margin-top: -1rem;
+ max-width: 100ch;
+}
+
+.title .logo {
+ padding: 15px;
+ flex-shrink: 0;
+}