Cachet/app/assets/sass/partials/_content.scss

65 lines
1.2 KiB
SCSS
Raw Normal View History

2014-12-04 16:57:37 +00:00
body.dashboard {
.content {
position: relative;
display: table-cell;
vertical-align: top;
width: 100%;
2014-12-04 21:56:54 +00:00
.row {
margin: 10px 0;
}
.header {
2014-12-29 10:15:25 -06:00
position: absolute;
top: 0;
left: 0;
color: #333;
background-color: #fff;
padding: 22px 14px;
2014-12-04 21:56:54 +00:00
width: 100%;
2014-12-29 10:15:25 -06:00
height: 70px;
2014-12-13 13:30:44 +00:00
font-size: 1.2em;
2014-12-29 10:15:25 -06:00
border-bottom: 1px solid #eee;
z-index: 99;
&.fixed {
position: fixed;
padding-left: 250px;
}
2014-12-04 21:56:54 +00:00
i {
2014-12-13 13:30:44 +00:00
// padding-right: 10px;
2014-12-04 21:56:54 +00:00
}
input, button, .btn {
position: relative;
top: -4px;
}
input {
width: 20%;
}
2014-12-13 16:27:59 +00:00
+ .row {
margin-top: 23px;
}
2014-12-13 13:30:44 +00:00
2014-12-29 10:15:25 -06:00
h3 {
color: #444;
margin-top: 0;
text-transform: uppercase;
}
2014-12-13 13:30:44 +00:00
}
2014-12-29 10:15:25 -06:00
.content-wrapper {
margin-top: 80px;
}
.sub-header {
font-weight: 300;
text-transform: uppercase;
}
.striped-list {
.striped-list-item {
border-bottom: 1px solid #f0f0f0;
padding: 8px 0;
}
}
2014-12-04 16:57:37 +00:00
}
}