Files
notifications-admin/app/assets/stylesheets/app.scss
Chris Hill-Scott 7e8046be47 Add syntax highlighting to code examples in docs
Uses the Pygments[1] package.

1. http://pygments.org/
2016-02-09 10:33:49 +00:00

65 lines
686 B
SCSS

// Extra CSS overlaying elements
#global-header-bar {
background-color: $red;
}
#global-header {
#logo {
white-space: nowrap;
font-size: 27px;
line-height: 32px;
img {
padding-right: 8px;
}
}
.header-proposition {
#proposition-links {
li {
padding: 0 0 0 15px;
}
}
}
}
@include media(desktop) {
#proposition-menu {
float: right;
}
}
a {
&:visited {
color: $link-colour;
}
}
.form-control-5em {
width: 100%;
@include media(tablet) {
width: 5em;
}
}
.column-main {
> .heading-large {
margin-top: $gutter;
}
}
.highlight {
font-family: monospace;
overflow-x: scroll;
}