mirror of
https://github.com/mgerb/classic-wow-forums
synced 2026-01-11 09:32:51 +00:00
85 lines
1.3 KiB
SCSS
85 lines
1.3 KiB
SCSS
$grey1: #252525;
|
|
$grey2: #161616;
|
|
|
|
.forum-header {
|
|
height: 137px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|