1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-10 09:02:50 +00:00

client - wip new topic

This commit is contained in:
2018-01-14 14:54:08 -06:00
parent 8c2b05dfc8
commit 2584e6a379
14 changed files with 227 additions and 24 deletions

View File

@@ -1,7 +1,9 @@
$fontPrimary: #cccccc;
html {
font-family: Arial,Helvetica,Sans-Serif;
font-size: 10pt;
color: #cccccc;
color: $fontPrimary;
}
b {
@@ -71,3 +73,20 @@ span.grey {
.text-center {
text-align: center;
}
.clickable {
cursor: pointer;
}
.input {
border: 1px solid lighten(#161616, 10%);
background-color: #161616;
border-radius: 2px;
color: $fontPrimary;
width: 100%;
padding: 5px 10px;
&:focus {
outline: none;
}
}