diff options
Diffstat (limited to 'examples/gradle/dokka-customFormat-example/logo-styles.css')
-rw-r--r-- | examples/gradle/dokka-customFormat-example/logo-styles.css | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/examples/gradle/dokka-customFormat-example/logo-styles.css b/examples/gradle/dokka-customFormat-example/logo-styles.css index bde131cd..9558eb83 100644 --- a/examples/gradle/dokka-customFormat-example/logo-styles.css +++ b/examples/gradle/dokka-customFormat-example/logo-styles.css @@ -1,6 +1,20 @@ -#logo { +/* + * All Margins and sizes are custom for the ktor-logo.png file. + * You may need to modify it and find what works best for your case. + */ +.library-name a { + position: relative; + margin-left: 55px; +} + +.library-name a::before { + content: ''; background-image: url('../images/ktor-logo.png'); + background-repeat: no-repeat; background-size: 125px 50px; - padding-top: 12px; - height: 65px; -}
\ No newline at end of file + position: absolute; + width: 52px; + height: 50px; + top: -18px; + left: -62px; +} |