154 lines
2.7 KiB
SCSS
154 lines
2.7 KiB
SCSS
.editor-bar {
|
|
position: relative;
|
|
@include linear-gradient(top, #d4dee8, #c9d5e2);
|
|
padding: 5px;
|
|
border: 1px solid #3c3c3c;
|
|
border-radius: 3px 3px 0 0;
|
|
border-bottom-color: #a5aaaf;
|
|
@include clearfix;
|
|
|
|
a {
|
|
display: block;
|
|
float: left;
|
|
padding: 3px 10px 7px;
|
|
margin-left: 7px;
|
|
border-radius: 2px;
|
|
|
|
&:hover {
|
|
background: rgba(255, 255, 255, .5);
|
|
}
|
|
}
|
|
|
|
.editor-tabs {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 10px;
|
|
|
|
li {
|
|
float: left;
|
|
}
|
|
|
|
.tab {
|
|
height: 24px;
|
|
padding: 7px 20px 3px;
|
|
border: 1px solid #a5aaaf;
|
|
border-radius: 3px 3px 0 0;
|
|
@include linear-gradient(top, rgba(0, 0, 0, 0) 87%, rgba(0, 0, 0, .06));
|
|
background-color: #e5ecf3;
|
|
font-size: 13px;
|
|
color: #3c3c3c;
|
|
box-shadow: 1px -1px 1px rgba(0, 0, 0, .05);
|
|
|
|
&.current {
|
|
background: #fff;
|
|
border-bottom-color: #fff;
|
|
}
|
|
}
|
|
|
|
.cheatsheet-toggle {
|
|
width: 21px;
|
|
height: 21px;
|
|
padding: 0;
|
|
margin: 3px 5px 0 16px;
|
|
border-radius: 22px;
|
|
border: 1px solid #a5aaaf;
|
|
background: #e5ecf3;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
color: #565d64;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
.simple-editor-cheatsheet {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 100%;
|
|
width: 0;
|
|
border-radius: 0 3px 3px 0;
|
|
@include linear-gradient(left, rgba(0, 0, 0, .1), rgba(0, 0, 0, 0) 15px);
|
|
background-color: #fff;
|
|
overflow: hidden;
|
|
@include transition(width .3s);
|
|
|
|
&.shown {
|
|
width: 300px;
|
|
}
|
|
|
|
.cheatsheet-wrapper {
|
|
width: 240px;
|
|
padding: 20px 30px;
|
|
}
|
|
|
|
h6 {
|
|
margin-bottom: 7px;
|
|
font-size: 15px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.row {
|
|
@include clearfix;
|
|
padding-bottom: 5px !important;
|
|
margin-bottom: 10px !important;
|
|
border-bottom: 1px solid #ddd !important;
|
|
|
|
&:last-child {
|
|
border-bottom: none !important;
|
|
margin-bottom: 0 !important;
|
|
}
|
|
}
|
|
|
|
.col {
|
|
float: left;
|
|
|
|
&.sample {
|
|
width: 60px;
|
|
margin-right: 30px;
|
|
}
|
|
}
|
|
|
|
pre {
|
|
font-size: 12px;
|
|
line-height: 18px;
|
|
}
|
|
|
|
code {
|
|
padding: 0;
|
|
background: none;
|
|
}
|
|
}
|
|
|
|
.problem-editor-icon {
|
|
display: inline-block;
|
|
width: 26px;
|
|
height: 21px;
|
|
vertical-align: middle;
|
|
background: url(../img/problem-editor-icons.png) no-repeat;
|
|
}
|
|
|
|
.problem-editor-icon.multiple-choice {
|
|
background-position: 0 0;
|
|
}
|
|
|
|
.problem-editor-icon.checks {
|
|
background-position: -56px 0;
|
|
}
|
|
|
|
.problem-editor-icon.string {
|
|
width: 28px;
|
|
background-position: -111px 0;
|
|
}
|
|
|
|
.problem-editor-icon.number {
|
|
width: 24px;
|
|
background-position: -168px 0;
|
|
}
|
|
|
|
.problem-editor-icon.dropdown {
|
|
width: 17px;
|
|
background-position: -220px 0;
|
|
}
|
|
|
|
|