Skip to content

Instantly share code, notes, and snippets.

@falseresync
Last active October 23, 2021 09:56
Show Gist options
  • Save falseresync/b0c0711eb0bec90031bdf11c06877266 to your computer and use it in GitHub Desktop.
Save falseresync/b0c0711eb0bec90031bdf11c06877266 to your computer and use it in GitHub Desktop.
Fabric Wiki Fixer
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
body {
background: #f6f5f3;
font-family: Inter;
font-size: 16px !important;
}
#dokuwiki__site {
max-width: 90em;
}
#dokuwiki__header {
padding: 0.5rem 0;
}
#dokuwiki__header .headings, #dokuwiki__header .tools {
margin-bottom: 0.5em;
width: auto;
}
#dokuwiki__header .headings a {
display: flex;
align-items: center;
}
#dokuwiki__header .headings a img {
height: 2rem;
width: 2rem;
}
#dokuwiki__header .headings a span {
font-size: 2rem;
text-transform: lowercase;
padding: 0;
}
#dokuwiki__header .tools,
#dokuwiki__sitetools,
#dokuwiki__usertools {
float: none;
text-align: left;
align-items: center;
width: auto;
}
#dokuwiki__header .tools {
display: flex;
flex-direction: row-reverse;
}
#dokuwiki__header .tools li,
#dokuwiki__header .tools li a{
display: block;
}
#dokuwiki__usertools {
position: static;
}
#dokuwiki__sitetools,
#dokuwiki__usertools ul {
display: flex;
flex-direction: row;
}
#dokuwiki__sitetools form {
margin-bottom: 0;
}
#dokuwiki__sitetools ul {
display: flex;
align-items: center;
}
#dokuwiki__content .page {
box-shadow: none;
border-radius: 1rem;
}
#dokuwiki__content .pageId {
display: none;
}
#dw__toc h3 {
letter-spacing: 0;
font-size: 1.25rem;
}
#dokuwiki__pagetools {
top: 0;
}
#dokuwiki__content .page {
box-shadow: none;
border-radius: 20px;
}
Copy link

ghost commented Dec 27, 2020

#dokuwiki__content .page {
    box-shadow: none;
    border-radius: 5px;
}

Rounded page content corners.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment