aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/resources/dokka/styles
diff options
context:
space:
mode:
authorKamil Doległo <kamilok1965@interia.pl>2020-03-11 20:35:44 +0100
committerKamil Doległo <kamilok1965@users.noreply.github.com>2020-03-11 21:29:55 +0100
commitc2b8a0f9da425c90a5c3079d81cf0220c101750b (patch)
treeb961ba71d02f729ea68ac1f1b18a8ecbf6da7b60 /core/src/main/resources/dokka/styles
parent7b318760f8a61aec86d54440f5a4ceab233e6890 (diff)
downloaddokka-c2b8a0f9da425c90a5c3079d81cf0220c101750b.tar.gz
dokka-c2b8a0f9da425c90a5c3079d81cf0220c101750b.tar.bz2
dokka-c2b8a0f9da425c90a5c3079d81cf0220c101750b.zip
Add logo to left column
Diffstat (limited to 'core/src/main/resources/dokka/styles')
-rw-r--r--core/src/main/resources/dokka/styles/style.css29
1 files changed, 25 insertions, 4 deletions
diff --git a/core/src/main/resources/dokka/styles/style.css b/core/src/main/resources/dokka/styles/style.css
index 3d59b18d..46408f2e 100644
--- a/core/src/main/resources/dokka/styles/style.css
+++ b/core/src/main/resources/dokka/styles/style.css
@@ -4,19 +4,32 @@
#container {
display: flex;
flex-direction: row;
+ min-height: 100%;
+}
+
+#main {
+ width: 100%;
+ padding-left: 12px;
+}
+
+#leftColumn {
+ padding-left: 12px;
+ min-height: 100%;
+ border-right: 2px solid #DADFE6;
}
@media screen and (max-width: 600px) {
#container {
flex-direction: column;
}
-}
-#main {
- width: 100%;
+ #leftColumn {
+ border-right: none;
+ }
}
#sideMenu {
+ padding-top: 12px;
padding-right: 12px;
}
@@ -42,6 +55,15 @@
pointer-events: all;
}
+#logo {
+ padding: 5px;
+ background-size: 55% 90%;
+ border-bottom: 2px solid #DADFE6;
+ background-repeat: no-repeat;
+ background-image: url(../images/docs_logo.svg);
+ height: 6vh;
+}
+
.monospace,
.code {
font-family: monospace;
@@ -78,7 +100,6 @@ body, table {
font: 14px/1.5 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
background: #F4F4F4;
font-weight: 300;
- margin-left: auto;
margin-right: auto;
max-width: 1440px;
}