summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-02-29 11:45:35 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-02-29 11:45:35 +0100
commit54ab9d808ffc7a60428b724d3ede54d30f977649 (patch)
tree944493be73a61aa3358e3efda6e4ffeafc134837 /style.css
downloadlanding-54ab9d808ffc7a60428b724d3ede54d30f977649.tar.gz
landing-54ab9d808ffc7a60428b724d3ede54d30f977649.tar.bz2
landing-54ab9d808ffc7a60428b724d3ede54d30f977649.zip
move landing page to demo repository
Diffstat (limited to 'style.css')
-rw-r--r--style.css64
1 files changed, 64 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..4c9f0b3
--- /dev/null
+++ b/style.css
@@ -0,0 +1,64 @@
+body {
+ background-color: white;
+ margin: 0;
+ padding: 0;
+ font-family: Verdana, sans;
+}
+
+header {
+ width: 100%;
+ height: 100px;
+ margin: 0;
+ padding: 0;
+ border-bottom: 1px solid black;
+}
+
+header h1 {
+ font-size: 200%;
+ margin: 0 0 0 120px;
+ position: relative;
+ top: 50%;
+ transform: translateY(-50%);
+}
+
+header #logo {
+ float: left;
+ padding: 0;
+ margin: 0;
+ text-align: center;
+ border-right: 1px solid black;
+}
+
+aside {
+ width: 100px;
+ float: left;
+}
+
+section#main {
+ margin: 0 0 0 100px;
+ padding: 20px;
+ border-left: 1px solid black;
+ height: 100%;
+ max-width: 40em;
+}
+
+section#main h1:first-child {
+ margin-top: 0;
+}
+
+h1 {
+ font-size: 160%;
+}
+
+h2 {
+ font-size: 140%;
+}
+
+h3 {
+ font-size: 120%;
+}
+
+h4, h5, h6 {
+ font-size: 100%;
+}
+