lbry-desktop/ui/scss/_gui.scss

168 lines
2.3 KiB
SCSS
Raw Normal View History

@import "global";
2017-05-02 00:31:13 +02:00
html
{
height: 100%;
font-size: $font-size;
}
body
{
font-family: 'Source Sans Pro', sans-serif;
line-height: $font-line-height;
}
2017-01-21 22:31:41 +01:00
2017-05-02 00:31:13 +02:00
#window
{
min-height: 100vh;
background: $color-canvas;
}
2016-11-02 17:09:33 +01:00
2017-05-02 00:31:13 +02:00
.badge
{
background: $color-money;
display: inline-block;
padding: 2px;
color: white;
border-radius: 2px;
}
.credit-amount--indicator
{
font-weight: bold;
color: $color-money;
}
#main-content
{
padding: $spacing-vertical;
margin-top: $height-header;
display: flex;
flex-direction: column;
main {
margin-left: auto;
margin-right: auto;
max-width: 100%;
2016-11-02 17:09:33 +01:00
}
2017-05-02 00:31:13 +02:00
main.main--single-column
2016-11-02 17:09:33 +01:00
{
2017-05-02 00:31:13 +02:00
width: $width-page-constrained;
2016-11-02 17:09:33 +01:00
}
}
.icon-fixed-width {
/* This borrowed is from a component of Font Awesome we're not using, maybe add it? */
width: (18em / 14);
text-align: center;
}
h2 {
font-size: 1.75em;
}
h3 { font-size: 1.4em; }
h4 {
font-size: 1.2em;
}
h5 { font-size: 1.1em; }
sup, sub {
vertical-align: baseline;
position: relative;
}
sup { top: -0.4em; }
sub { top: 0.4em; }
2016-10-22 10:31:48 +02:00
code {
font: 0.8em Consolas, 'Lucida Console', 'Source Sans', monospace;
background-color: #eee;
}
2016-04-24 10:59:55 +02:00
p
{
margin-bottom: 0.8em;
2016-08-08 00:45:26 +02:00
&:last-child
{
margin-bottom: 0;
}
2016-04-24 10:59:55 +02:00
}
.hidden {
display: none;
}
.disabled {
pointer-events: none;
opacity: 0.7;
}
.truncated-text {
//display: inline-block;
display: -webkit-box;
overflow: hidden;
-webkit-box-orient: vertical;
}
.busy-indicator
{
background: url('../img/busy.gif') no-repeat center center;
display: inline-block;
margin: -1em 0;
min-width: 16px;
min-height: 8px;
vertical-align: middle;
padding: 0 30px;
&:last-child
{
padding-right: 2px;
}
&:first-child
{
padding-left: 2px;
}
}
.icon:only-child {
2016-04-25 12:57:47 +02:00
position: relative;
top: 0.16em;
}
.help {
font-size: .85em;
2016-04-10 02:00:56 +02:00
color: $color-help;
}
2016-08-08 06:47:48 +02:00
.meta
{
font-size: 0.9em;
color: $color-meta-light;
}
.empty
{
color: $color-meta-light;
font-style: italic;
}
2017-05-15 18:34:33 +02:00
/*should be redone/moved*/
.file-list__header {
.busy-indicator {
float: left;
margin-top: 12px;
}
}
2016-11-18 11:56:55 +01:00
.sort-section {
display: block;
2017-04-27 15:17:18 +02:00
margin-bottom: $spacing-vertical * 2/3;
2016-11-18 11:56:55 +01:00
text-align: right;
2017-04-27 15:17:18 +02:00
line-height: 1;
2016-11-18 11:56:55 +01:00
font-size: 0.85em;
color: $color-help;
}
section.section-spaced {
margin-bottom: $spacing-vertical;
}