2015-10-16 17:53:02 +00:00
|
|
|
// General
|
|
|
|
body {
|
2017-06-07 21:23:10 +00:00
|
|
|
padding-top: $navbar-height * 1.2;
|
2015-10-16 17:53:02 +00:00
|
|
|
}
|
|
|
|
label:not(.checkbox):not(.radio) {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Header
|
|
|
|
header {
|
|
|
|
position: relative;
|
|
|
|
margin-bottom: 24px;
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin-bottom: 9px;
|
|
|
|
font-size: 48px;
|
|
|
|
letter-spacing: -1px;
|
|
|
|
line-height: 1;
|
|
|
|
-webkit-margin-before: 0;
|
|
|
|
-webkit-margin-after: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 30px;
|
|
|
|
line-height: 36px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a, a:hover, a:visited {
|
2017-06-07 21:23:10 +00:00
|
|
|
color: $gray-dark;
|
2015-10-16 17:53:02 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Boxes
|
|
|
|
.content-box.editable {
|
|
|
|
border: 1px dashed #ccc;
|
|
|
|
padding: 1px;
|
|
|
|
min-height: 30px;
|
|
|
|
}
|
|
|
|
.edit-toggle {
|
|
|
|
position: relative;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Markitup
|
|
|
|
div.box-content .markItUpEditor {
|
2017-06-07 21:23:10 +00:00
|
|
|
font-family: $font-family-monospace;
|
2015-10-16 17:53:02 +00:00
|
|
|
padding:5px;
|
|
|
|
width:600px;
|
|
|
|
height:320px;
|
|
|
|
clear:both; display:block;
|
|
|
|
overflow:auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Markitup Modal
|
|
|
|
.modal div.markItUp {
|
|
|
|
width: 500px;
|
|
|
|
}
|
|
|
|
.modal textarea.markItUpEditor {
|
|
|
|
width: 500px;
|
|
|
|
height: 250px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Titled Form
|
|
|
|
.titled-form {
|
|
|
|
position: relative;
|
|
|
|
clear: both;
|
|
|
|
width: auto;
|
|
|
|
margin-bottom: 2em;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.titled-form-header {
|
|
|
|
position: relative;
|
|
|
|
height: 40px;
|
|
|
|
line-height: 40px;
|
2017-06-07 21:23:10 +00:00
|
|
|
background-color: $navbar-default-bg;
|
2015-10-16 17:53:02 +00:00
|
|
|
border: 1px solid #D5D5D5;
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
-webkit-background-clip: padding-box;
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
left: 10px;
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 3em;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 600;
|
2017-06-07 21:23:10 +00:00
|
|
|
color: $gray-dark;
|
2015-10-16 17:53:02 +00:00
|
|
|
line-height: 18px;
|
|
|
|
text-shadow: 1px 1px 2px rgba(255,255,255,.5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.titled-form-content {
|
|
|
|
border: 1px solid #D5D5D5;
|
2017-06-07 21:23:10 +00:00
|
|
|
@include box-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
|
2015-10-16 17:53:02 +00:00
|
|
|
background-color: #fff;
|
|
|
|
border-top: none;
|
|
|
|
padding-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-actions {
|
|
|
|
margin-top: 0px;
|
|
|
|
border-radius: 0 0 4px 4px;
|
2017-06-07 21:23:10 +00:00
|
|
|
@include box-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
|
2015-10-16 17:53:02 +00:00
|
|
|
border: 1px solid #D5D5D5;
|
|
|
|
border-top: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Footer
|
|
|
|
.footer {
|
|
|
|
margin-top: 45px;
|
|
|
|
padding: 25px 0 26px;
|
|
|
|
border-top: 1px solid #e5e5e5;
|
|
|
|
}
|
|
|
|
.footer p {
|
|
|
|
margin-bottom: 0;
|
|
|
|
color: #555;
|
|
|
|
}
|