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

101 lines
1.6 KiB
SCSS
Raw Normal View History

2013-09-06 06:04:45 +08:00
@import "common/foundation/variables";
@import "common/foundation/mixins";
2013-02-06 03:16:51 +08:00
// --------------------------------------------------
// Base styles for HTML elements
// --------------------------------------------------
html {
color: $primary;
font-family: $base-font-family;
font-size: $base-font-size;
// font: #{$base-font-size}/#{$base-line-height} $base-font-family;
// this does not work, see https://meta.discourse.org/t/x/23193/11
background-color: $secondary;
2013-02-06 03:16:51 +08:00
overflow-y: scroll;
}
2013-02-06 03:16:51 +08:00
// Links
// --------------------------------------------------
a {
color: $tertiary;
2013-02-06 03:16:51 +08:00
text-decoration: none;
cursor: pointer;
2013-02-06 03:16:51 +08:00
&:visited {
color: $tertiary;
2013-02-06 03:16:51 +08:00
}
&:hover {
color: $tertiary;
2013-02-06 03:16:51 +08:00
}
&:active {
color: $tertiary;
2013-02-06 03:16:51 +08:00
}
}
// Typography
// --------------------------------------------------
hr {
display: block;
height: 1px;
margin: 1em 0;
border: 0;
border-top: 1px solid scale-color-diff();
2013-02-06 03:16:51 +08:00
padding: 0;
}
// Lists
// --------------------------------------------------
ul,
ol,
dd {
margin: 0 0 9px 25px;
padding: 0;
}
.cooked ul, .cooked ol, .cooked dd {
clear: both;
}
2013-02-06 03:16:51 +08:00
li {
> ul,
> ol {
margin-bottom: 0;
}
}
// Embedded content
// --------------------------------------------------
img {
vertical-align: middle;
}
// Forms
// --------------------------------------------------
fieldset {
margin: 0;
border: 0;
padding: 0;
}
2013-06-20 15:46:18 +08: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 21:48:25 +08:00
#offscreen-content {
display: none;
}