135 lines
2.7 KiB
SCSS
135 lines
2.7 KiB
SCSS
div.wiki-wrapper {
|
|
display: table;
|
|
width: 100%;
|
|
|
|
div#wiki_panel {
|
|
@extend .sidebar;
|
|
overflow: auto;
|
|
|
|
input[type="button"] {
|
|
@extend h3;
|
|
color: lighten($text-color, 10%);
|
|
@include transition();
|
|
font-size: $body-font-size;
|
|
margin: 0 !important;
|
|
padding: 7px 7px 7px 30px;
|
|
text-align: left;
|
|
width: 100%;
|
|
|
|
&:hover {
|
|
@include box-shadow(0 1px 0 #fff);
|
|
background: #efefef;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
li {
|
|
&.create-article {
|
|
position: relative;
|
|
|
|
h3 {
|
|
position: relative;
|
|
|
|
&:before {
|
|
background: blue url(images/ui-icons_454545_256x240.png) -32px -16px no-repeat;
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
&:hover {
|
|
&:before {
|
|
background-image: url(images/ui-icons_454545_256x240.png) -64px -16px no-repeat;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
div#wiki_create_form {
|
|
@extend .clearfix;
|
|
padding: 15px;
|
|
background: #d6d6d6;
|
|
border-bottom: 1px solid #bbb;
|
|
|
|
input[type="text"] {
|
|
margin-bottom: 6px;
|
|
display: block;
|
|
width: 100%;
|
|
@include box-sizing(border-box);
|
|
}
|
|
|
|
ul {
|
|
li {
|
|
float: left;
|
|
|
|
&#cancel {
|
|
float: right;
|
|
margin-top: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
section.wiki-body {
|
|
@extend .content;
|
|
|
|
header {
|
|
@extend .topbar;
|
|
|
|
p {
|
|
float: left;
|
|
padding: 15px;
|
|
margin-bottom: 0;
|
|
color: darken(#F6EFD4, 55%);
|
|
line-height: 1em;
|
|
}
|
|
|
|
ul {
|
|
float: right;
|
|
|
|
li {
|
|
float: left;
|
|
|
|
input[type="button"] {
|
|
@include box-shadow(inset 1px 0 0 lighten(#f6efd4, 5%));
|
|
@include border-radius(0);
|
|
@include transition();
|
|
background: darken(#F6EFD4, 5%);
|
|
border: 0;
|
|
border-left: 1px solid darken(#f6efd4, 20%);
|
|
color: darken(#F6EFD4, 80%);
|
|
text-shadow: none;
|
|
font-weight: normal;
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
padding: 15px;
|
|
margin: 0;
|
|
|
|
&:hover {
|
|
background: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
h1.wiki-title {
|
|
font-weight: bold;
|
|
padding-bottom: 10px;
|
|
margin-bottom: 20px;
|
|
border-bottom: 1px solid #ccc;
|
|
}
|
|
|
|
p {
|
|
line-height: 1.6em;
|
|
}
|
|
|
|
}
|
|
}
|