initial wip theme
This commit is contained in:
parent
6fa2d35630
commit
cd31e6532b
5 changed files with 170 additions and 9 deletions
|
@ -23,12 +23,7 @@ html {
|
|||
}
|
||||
|
||||
body {
|
||||
/* Open Sans lacks combining diacritics, so these will fall through
|
||||
to the next font. Helevetica's diacritics however do not combine
|
||||
nicely with Open Sans (on OSX, at least) and result in a huge
|
||||
horizontal mess. Arial empirically gets it right, hence prioritising
|
||||
Arial here. */
|
||||
font-family: 'Open Sans', Arial, Helvetica, Sans-Serif;
|
||||
font-family: $font-family;
|
||||
font-size: 15px;
|
||||
background-color: $primary-bg-color;
|
||||
color: $primary-fg-color;
|
||||
|
@ -73,7 +68,7 @@ input[type=text]:focus, input[type=password]:focus, textarea:focus {
|
|||
|
||||
/* Required by Firefox */
|
||||
textarea {
|
||||
font-family: 'Open Sans', Arial, Helvetica, Sans-Serif;
|
||||
font-family: $font-family;
|
||||
}
|
||||
|
||||
/* Prevent ugly dotted highlight around selected elements in Firefox */
|
||||
|
@ -211,7 +206,7 @@ textarea {
|
|||
border: solid 1px $accent-color;
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
font-family: 'Open Sans', Arial, Helvetica, Sans-Serif;
|
||||
font-family: $font-family;
|
||||
margin-left: 0px;
|
||||
margin-right: 8px;
|
||||
padding-left: 1.5em;
|
||||
|
@ -304,7 +299,8 @@ textarea {
|
|||
}
|
||||
|
||||
.changelog_text {
|
||||
font-family: 'Open Sans', Arial, Helvetica, Sans-Serif;
|
||||
// why on earth is this needed? and with the wrong namespacing? >:(
|
||||
font-family: $font-family;
|
||||
}
|
||||
|
||||
.mx_Beta {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue