1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-11 09:32:51 +00:00

little bit of everything - it's been a long day

This commit is contained in:
2018-01-14 23:46:15 -06:00
parent d9d7f2d202
commit efbee265d3
25 changed files with 298 additions and 125 deletions

View File

@@ -1,4 +1,5 @@
$fontPrimary: #cccccc;
$linkColor: #FFB019;
html {
font-family: Arial,Helvetica,Sans-Serif;
@@ -19,7 +20,7 @@ body {
}
a {
color: #FFB019;
color: $linkColor;
font-weight: bold;
font-size: 9pt;
text-decoration: underline;
@@ -35,6 +36,20 @@ a {
}
hr {
size: 1;
background-color: #9E9E9E;
display: block;
unicode-bidi: isolate;
-webkit-margin-before: 0.5em;
-webkit-margin-after: 0.5em;
-webkit-margin-start: auto;
-webkit-margin-end: auto;
overflow: hidden;
border: none;
height: 1px;
}
.hr {
background: rgb(71, 71, 71);
width: 80%;
height: 0.5px;
@@ -44,6 +59,10 @@ hr {
clear: both;
}
h1, h2, h3, h4, h5, p {
margin-top: 0;
}
.inline-block {
display: inline-block;
}
@@ -58,6 +77,10 @@ hr {
&--wrap {
flex-wrap: wrap;
}
&--column {
flex-direction: column;
}
}
.flex-1 {
@@ -89,4 +112,18 @@ span.grey {
&:focus {
outline: none;
}
&__button {
background: none;
border: none;
text-decoration: underline;
color: $linkColor;
font-weight: bold;
font-size: 9pt;
cursor: pointer;
&:hover {
color: white;
}
}
}