discourse/app/assets/stylesheets/common/foundation/base.scss

98 lines
1.5 KiB
SCSS
Raw Normal View History

2013-09-05 18:04:45 -04:00
@import "common/foundation/variables";
@import "common/foundation/mixins";
2013-02-05 14:16:51 -05:00
// --------------------------------------------------
// Base styles for HTML elements
// --------------------------------------------------
html {
color: $primary;
2013-02-05 14:16:51 -05:00
font: #{$base-font-size}/#{$base-line-height} $base-font-family;
background-color: $secondary;
2013-02-05 14:16:51 -05:00
overflow-y: scroll;
}
2013-02-05 14:16:51 -05:00
// Links
// --------------------------------------------------
a {
color: $tertiary;
2013-02-05 14:16:51 -05:00
text-decoration: none;
cursor: pointer;
2013-02-05 14:16:51 -05:00
&:visited {
color: $tertiary;
2013-02-05 14:16:51 -05:00
}
&:hover {
color: $tertiary;
2013-02-05 14:16:51 -05:00
}
&:active {
color: $tertiary;
2013-02-05 14:16:51 -05:00
}
}
// Typography
// --------------------------------------------------
hr {
display: block;
height: 1px;
margin: 1em 0;
border: 0;
border-top: 1px solid scale-color-diff();
2013-02-05 14:16:51 -05:00
padding: 0;
}
// Lists
// --------------------------------------------------
ul,
ol,
dd {
margin: 0 0 9px 25px;
padding: 0;
}
.cooked ul, .cooked ol, .cooked dd {
clear: both;
}
2013-02-05 14:16:51 -05:00
li {
> ul,
> ol {
margin-bottom: 0;
}
}
// Embedded content
// --------------------------------------------------
img {
vertical-align: middle;
}
// Forms
// --------------------------------------------------
fieldset {
margin: 0;
border: 0;
padding: 0;
}
2013-06-20 03:46:18 -04:00
pre code {
overflow: auto;
}
// TODO figure out a clean place to put stuff like this
.row:before, .row:after {
display: table;
content: "";
}
.row:after {clear: both;}
2014-12-04 08:48:25 -05:00
#offscreen-content {
display: none;
}