Confluence Stylesheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import url("https://fonts.googleapis.com/css?family=Muli|Open+Sans|Source+Code+Pro"); | |
#main #content { | |
padding: 1em; | |
margin: auto; | |
background: #fefefe; | |
} | |
#main #content h1, #main #content h2, #main #content h3, #main #content h4, #main #content h5, #main #content h6 { | |
font-weight: bold; | |
font-family: 'Muli', sans-serif; | |
} | |
#main #content h1 { | |
color: #000000; | |
font-size: 28pt; | |
} | |
#main #content h2 { | |
border-bottom: 1px solid #CCCCCC; | |
color: #000000; | |
font-size: 24px; | |
} | |
#main #content h3 { | |
font-size: 18px; | |
} | |
#main #content h4 { | |
font-size: 16px; | |
} | |
#main #content h5 { | |
font-size: 14px; | |
} | |
#main #content h6 { | |
color: #777777; | |
background-color: inherit; | |
font-size: 14px; | |
} | |
#main #content hr { | |
height: 0.2em; | |
border: 0; | |
color: #CCCCCC; | |
background-color: #CCCCCC; | |
} | |
#main #content p, #main #content blockquote, #main #content ul, #main #content ol, #main #content dl, #main #content li { | |
font-family: 'Open Sans', sans-serif; | |
max-width: 80ch; | |
margin: 15px 0; | |
} | |
#main #content table, #main #content pre { | |
margin: 15px 0; | |
} | |
#main #content a, #main #content a:visited { | |
color: #4183C4; | |
background-color: inherit; | |
text-decoration: none; | |
} | |
#main #content #message { | |
border-radius: 6px; | |
border: 1px solid #ccc; | |
display: block; | |
width: 100%; | |
height: 60px; | |
margin: 6px 0px; | |
} | |
#main #content button, #main #content #ws { | |
font-size: 10pt; | |
padding: 4px 6px; | |
border-radius: 5px; | |
border: 1px solid #bbb; | |
background-color: #eee; | |
} | |
#main #content code, #main #content pre, #main #content #ws, #main #content #message { | |
font-family: 'Source Code Pro'; | |
font-size: 10pt; | |
border-radius: 3px; | |
background-color: #F8F8F8; | |
color: inherit; | |
} | |
#main #content code { | |
border: 1px solid #EAEAEA; | |
margin: 0 2px; | |
padding: 0 5px; | |
} | |
#main #content pre { | |
border: 1px solid #CCCCCC; | |
overflow: auto; | |
padding: 4px 8px; | |
} | |
#main #content pre > code { | |
border: 0; | |
margin: 0; | |
padding: 0; | |
} | |
#main #content #ws { | |
background-color: #f8f8f8; | |
} | |
#main #content .send { | |
color: #77bb77; | |
} | |
#main #content .server { | |
color: #7799bb; | |
} | |
#main #content .error { | |
color: #AA0000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment