Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[submodule "assets/vendor/jquery.mmenu"]
path = assets/vendor/jquery.mmenu
url = https://github.com/BeSite/jQuery.mmenu.git
[submodule "assets/vendor/bootstrap"]
path = assets/vendor/bootstrap
url = https://github.com/twbs/bootstrap.git
Empty file added assets/css/forumdisplay.css
Empty file.
137 changes: 137 additions & 0 deletions assets/css/forumdisplay.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
#threads-list {
border-bottom:1px solid #c6c6c7;
margin-bottom: 15px;

// remove default box padding
.box-body {
color: #333333;
padding: 0px;
border-bottom:none;
}

div.thread-bit {
padding-left: 5px;
border-bottom: 1px solid #ffffff;

div.thread-bit-wrap {
background: #e3e3e6;
padding: 10px;
cursor: pointer;

a:link, a:visited, :hover {
text-decoration: none;
}

input[type='checkbox'] {
-webkit-appearance:none;
width:20px;
height:20px;
background:white;
border-radius:5px;
border:2px solid #c6c6c7;
float: right;
position: relative;
right: 0px;
top: 0px;
margin: 0px 0px 0px 10px;
}

input[type='checkbox']:checked {
background: green;
}

div.thread-title {
color: #084b82;
font-size: 14px;
}
div.thread-summary {
color: #333333;
font-size: 12px;

div.thread-author, div.thread-stats {
display: inline-block;
}
}
}
}
}

@media only screen and (min-width: 350px) {
#threads-list {
div.thread-bit {
div.thread-bit-wrap {
div.thread-summary {
div.thread-stats {
float: right;
}
}
}
}
}
}



//#threads-list {
// .box-body {
// margin: 0;
// padding: 0;
// }
//
// .mod-input {
// float: right;
// position: relative;
// display: block;
// background: red;
// padding: 10px;
// vertical-align:middle;
// }
//
// ul {
// margin: 0;
// padding: 0;
// list-style-type: none;
//
// li {
// border-bottom: 1px solid #ffffff;
// a:link, a:visited, a:hover {
// display: block;
// padding: 5px 15px;
// text-decoration: none;
// }
//
// input[type='checkbox'] {
// -webkit-appearance:none;
// width:25px;
// height:25px;
// background:white;
// border-radius:5px;
// border:2px solid #c6c6c7;
// float: right;
// position: relative;
// right: 15px;
// top: 5px;
// }
// input[type='checkbox']:checked {
// background: green;
// }
//
// //label {
// // width:98%;
// // position:relative;
// // //left: -20px;
// // display:inline-block;
// // vertical-align:middle;
// //}
// //
// .thread-title {
// font-size: 15px;
// }
//
// .thread-author, .thread-stats {
// font-size: 12px;
// color: #333333;
// }
// }
// }
//}
60 changes: 60 additions & 0 deletions assets/css/forumhome.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
#forums-list {
border-bottom: 1px solid #c6c6c7;
margin-bottom: 15px; }
#forums-list .box-container .box-body {
background: #e3e3e6;
color: #333333;
padding: 0px;
border-bottom: none; }
#forums-list div.forum-bit {
padding-left: 5px;
border-bottom: 1px solid #ffffff; }
#forums-list div.forum-bit div.forum-bit-wrap {
background: #e3e3e6;
padding: 10px;
cursor: pointer; }
#forums-list div.forum-bit div.forum-bit-wrap a:link, #forums-list div.forum-bit div.forum-bit-wrap a:visited, #forums-list div.forum-bit div.forum-bit-wrap :hover {
text-decoration: none; }
#forums-list div.forum-bit div.forum-bit-wrap div.forum-title {
color: #084b82;
font-weight: bold;
font-size: 16px; }
#forums-list div.forum-bit div.forum-bit-wrap div.forum-summary {
color: #333333;
font-size: 14px; }

.status-new {
background: #499551; }

.status-old {
background: #9fc1a5; }

#whos-online p {
margin: 0;
padding: 0;
font-size: 14px;
text-align: center; }
#whos-online p.active-text {
font-weight: bold;
margin-bottom: 10px; }
#whos-online div.box-body {
padding: 15px; }

#forums-status {
font-size: 12px;
margin: 0 auto;
width: 320px; }
#forums-status div.forum-status-new, #forums-status div.forum-status-old {
width: auto;
float: left;
margin: 0 5px 15px 5px; }
#forums-status div.forum-status-new div.status-new-border, #forums-status div.forum-status-old div.status-new-border {
border-bottom: 4px solid #499551;
width: 120px;
margin: 0 auto;
margin-top: 5px; }
#forums-status div.forum-status-new div.status-old-border, #forums-status div.forum-status-old div.status-old-border {
border-bottom: 4px solid #a6c7ac;
width: 120px;
margin: 0 auto;
margin-top: 5px; }
92 changes: 92 additions & 0 deletions assets/css/forumhome.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
// Forumhome's Forum Listings
#forums-list {
border-bottom:1px solid #c6c6c7;
margin-bottom: 15px;

// remove default box padding
.box-container .box-body {
background: #e3e3e6;
color: #333333;
padding: 0px;
border-bottom:none;
}

div.forum-bit {
padding-left: 5px;
border-bottom: 1px solid #ffffff;

div.forum-bit-wrap {
background: #e3e3e6;
padding: 10px;
cursor: pointer;

a:link, a:visited, :hover {
text-decoration: none;
}

div.forum-title {
color: #084b82;
font-weight: bold;
font-size: 16px;
}
div.forum-summary {
color: #333333;
font-size: 14px;
}
}
}
}

// Forumhome's Post Status
.status-new {
background: #499551;
}
.status-old {
background: #9fc1a5;
}

// Who's online box
#whos-online {
p {
margin: 0;
padding: 0;
font-size: 14px;
text-align: center;
}

p.active-text {
font-weight: bold;
margin-bottom: 10px;
}

div.box-body {
padding: 15px;
}
}

// Forum Status Keys
#forums-status {
font-size: 12px;
margin: 0 auto;
width: 320px;

div.forum-status-new, div.forum-status-old {
width: auto;
float: left;
margin: 0 5px 15px 5px;

div.status-new-border {
border-bottom: 4px solid #499551;
width: 120px;
margin: 0 auto;
margin-top: 5px;
}
div.status-old-border {
border-bottom: 4px solid #a6c7ac;
width: 120px;
margin: 0 auto;
margin-top: 5px;
}
}
}

Loading