lbry-desktop/scss/_canvas.scss

197 lines
3.4 KiB
SCSS
Raw Normal View History

@import "global";
html
{
height: 100%;
font-size: $font-size;
}
body
{
font-family: 'Source Sans Pro', sans-serif;
line-height: 1.3333;
}
$drawer-width: 240px;
#drawer
{
width: $drawer-width;
2016-08-08 06:47:48 +02:00
position: fixed;
min-height: 100vh;
left: 0;
top: 0;
background: $color-bg;
2016-08-18 10:06:45 +02:00
z-index: 3;
2016-08-07 23:05:04 +02:00
.drawer-item
{
display: block;
2016-08-07 23:05:04 +02:00
padding: $spacing-vertical / 2;
font-size: 1.2em;
height: $spacing-vertical * 1.5;
2016-08-07 23:05:04 +02:00
.icon
{
margin-right: 6px;
}
.link-label
{
line-height: $spacing-vertical * 1.5;
}
.badge
{
float: right;
background: $color-money;
display: inline-block;
padding: 2px;
color: white;
margin-top: $spacing-vertical * 0.25 - 2;
border-radius: 2px;
}
}
.drawer-item-selected
{
background: $color-canvas;
color: $color-primary;
}
}
2016-08-07 23:05:04 +02:00
#drawer-handle
{
padding: $spacing-vertical / 2;
max-height: $header-height - $spacing-vertical;
text-align: center;
2016-08-07 23:05:04 +02:00
}
#window.drawer-closed
{
#drawer { display: none }
}
#window.drawer-open
{
#main-content { margin-left: $drawer-width; }
2016-08-08 02:57:12 +02:00
.open-drawer-link { visibility: hidden; }
#header { padding-left: $drawer-width + $spacing-vertical / 2; }
}
2016-08-07 23:05:04 +02:00
#header
{
background: $color-primary;
color: white;
height: $header-height;
padding: $spacing-vertical / 2;
position: fixed;
top: 0;
left: 0;
width: 100%;
2016-08-18 10:06:45 +02:00
z-index: 2;
box-sizing: border-box;
h1 { font-size: 1.8em; line-height: $header-height - $spacing-vertical; display: inline-block; float: left; }
&.header-scrolled
{
box-shadow: $default-box-shadow;
}
}
.header-search
{
margin-left: 60px;
text-align: center;
input[type="search"] {
background: rgba(255, 255, 255, 0.3);
color: white;
width: 400px;
@include placeholder-color(#e8e8e8);
}
}
#main-content
{
background: $color-canvas;
min-height: calc(100vh - 60px); //should be -$header-height, but I'm dumb I guess? It wouldn't work
2016-08-08 00:45:26 +02:00
main
{
margin-top: $header-height;
2016-08-08 00:45:26 +02:00
padding: $spacing-vertical;
}
h2
{
margin-bottom: $spacing-vertical;
}
h3, h4
{
margin-bottom: $spacing-vertical / 2;
margin-top: $spacing-vertical;
&:first-child
{
margin-top: 0;
}
}
2016-08-08 06:47:48 +02:00
.meta
{
+ h2, + h3, + h4
{
margin-top: 0;
}
}
2016-08-07 23:05:04 +02:00
}
2016-08-08 00:25:29 +02:00
$header-icon-size: 1.5em;
2016-08-07 23:05:04 +02:00
.open-drawer-link, .close-drawer-link
{
display: inline-block;
2016-08-08 00:25:29 +02:00
font-size: $header-icon-size;
padding: 2px 6px 0 6px;
float: left;
2016-08-07 23:05:04 +02:00
}
2016-08-08 00:25:29 +02:00
.close-lbry-link
{
font-size: $header-icon-size;
float: right;
padding: 0 6px 0 18px;
}
2016-08-07 23:05:04 +02:00
2016-08-08 00:45:26 +02:00
.card {
margin-left: auto;
margin-right: auto;
max-width: 800px;
padding: $spacing-vertical;
background: $color-bg;
box-shadow: $default-box-shadow;
border-radius: 2px;
2016-08-08 05:31:21 +02:00
}
.card-obscured
{
position: relative;
}
.card-obscured .card-content {
-webkit-filter: blur($blur-intensity);
-moz-filter: blur($blur-intensity);
-o-filter: blur($blur-intensity);
-ms-filter: blur($blur-intensity);
filter: blur($blur-intensity);
}
.card-overlay {
position: absolute;
left: 0px;
right: 0px;
top: 0px;
bottom: 0px;
padding: 20px;
background-color: rgba(128, 128, 128, 0.8);
color: #fff;
display: flex;
align-items: center;
font-weight: 600;
}
2016-08-08 05:31:21 +02:00
.card-series-submit
{
margin-left: auto;
margin-right: auto;
max-width: 800px;
padding: $spacing-vertical / 2;
}
2016-08-08 00:45:26 +02:00
.full-screen
{
width: 100%;
height: 100%;
}