mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-13 02:22:50 +00:00
added client things - finished home page
This commit is contained in:
8
client/app/scss/_mixins.scss
Normal file
8
client/app/scss/_mixins.scss
Normal file
@@ -0,0 +1,8 @@
|
||||
@mixin breakpoint($point) {
|
||||
@if $point == smallOrLess {
|
||||
@media (max-width: 420px) { @content ; }
|
||||
}
|
||||
@else if $point == mediumOrLess {
|
||||
@media (max-width: 540px) { @content ; }
|
||||
}
|
||||
}
|
||||
4
client/app/scss/index.scss
Normal file
4
client/app/scss/index.scss
Normal file
@@ -0,0 +1,4 @@
|
||||
@import '~font-awesome/css/font-awesome.css';
|
||||
@import '~normalize.css/normalize.css';
|
||||
@import './variables.scss';
|
||||
@import './style.scss';
|
||||
57
client/app/scss/style.scss
Normal file
57
client/app/scss/style.scss
Normal file
@@ -0,0 +1,57 @@
|
||||
html {
|
||||
font-family: Arial,Helvetica,Sans-Serif;
|
||||
font-size: 10pt;
|
||||
color: #cccccc;
|
||||
}
|
||||
|
||||
b {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: black;
|
||||
background-image: url('../assets/forum-bg.jpg');
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #FFB019;
|
||||
font-weight: bold;
|
||||
font-size: 9pt;
|
||||
|
||||
&:hover {
|
||||
color: white;
|
||||
}
|
||||
|
||||
&:visited {
|
||||
color: #B1B1B1;
|
||||
}
|
||||
}
|
||||
|
||||
hr {
|
||||
background: rgb(71, 71, 71);
|
||||
width: 80%;
|
||||
height: 0.5px;
|
||||
border: 0;
|
||||
margin: 25px auto;
|
||||
display: block;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.inline-block {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.flex {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.flex--center {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
span.grey {
|
||||
font-family: Arial,Helvetica,Sans-Serif;
|
||||
color: #A0A1A3;
|
||||
font-size: 9pt;
|
||||
}
|
||||
0
client/app/scss/variables.scss
Normal file
0
client/app/scss/variables.scss
Normal file
Reference in New Issue
Block a user