mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-11 01:22:49 +00:00
thread page in progress
This commit is contained in:
91
client/app/pages/forum/forum.scss
Normal file
91
client/app/pages/forum/forum.scss
Normal file
@@ -0,0 +1,91 @@
|
||||
$grey1: #252525;
|
||||
$grey2: #161616;
|
||||
|
||||
.forum-header {
|
||||
height: 137px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.forum-nav {
|
||||
display: inline-block;
|
||||
padding-left: 5px;
|
||||
position: relative;
|
||||
bottom: 10;
|
||||
}
|
||||
|
||||
.forum-body {
|
||||
min-height: 500px;
|
||||
margin-bottom: 100px;
|
||||
}
|
||||
|
||||
.forum-menu-search-bg {
|
||||
background-image: url('../../assets/forum-menu-search-bg.gif');
|
||||
|
||||
input {
|
||||
margin-top: 11px;
|
||||
}
|
||||
}
|
||||
|
||||
.forumliner-bg {
|
||||
background-image: url('../../assets/forumliner-bg.gif');
|
||||
background-repeat: repeat-x;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.forumliner-bot-bg {
|
||||
background-image: url('../../assets/forumliner-bot-bg.gif');
|
||||
background-repeat: repeat-x;
|
||||
width: 100%;
|
||||
height: 15px;
|
||||
}
|
||||
|
||||
.forum-table {
|
||||
width: 100%;
|
||||
border: 1px solid;
|
||||
border-color: #575757;
|
||||
color: #E2D9B0;
|
||||
font-size: 9pt;
|
||||
|
||||
b {
|
||||
color: #E2D9B0;
|
||||
}
|
||||
}
|
||||
|
||||
.forum-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
height: 24px;
|
||||
background: $grey1;
|
||||
|
||||
&--header {
|
||||
background-image: url('../../assets/thread-topic-bg2.gif');
|
||||
background-repeat: repeat-x;
|
||||
}
|
||||
|
||||
&--dark {
|
||||
background: $grey2;
|
||||
}
|
||||
}
|
||||
|
||||
.forum-cell {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 0 2px;
|
||||
|
||||
&--header {
|
||||
border: 1px solid;
|
||||
border-color: #8F8F8F #8F8F8F #171511 #171511;
|
||||
}
|
||||
|
||||
&--body {
|
||||
border: 1px solid;
|
||||
border-color: #000000 #000000 #252525 #252525;
|
||||
}
|
||||
|
||||
&--center {
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user