lbry-desktop/src/renderer/scss/_gui.scss

195 lines
3 KiB
SCSS
Raw Normal View History

@import url(https://fonts.googleapis.com/css?family=Roboto:400,400i,500,500i,700);
html {
2017-05-02 00:31:13 +02:00
height: 100%;
2017-08-18 07:37:35 +02:00
font-size: var(--font-size);
2017-05-02 00:31:13 +02:00
}
body {
2017-08-20 07:58:03 +02:00
color: var(--text-color);
2017-10-03 06:08:25 +02:00
font-family: 'Roboto', sans-serif;
2017-08-18 07:37:35 +02:00
line-height: var(--font-line-height);
2017-05-02 00:31:13 +02:00
}
2017-01-21 22:31:41 +01:00
/* Custom text selection */
*::selection {
background: var(--text-selection-bg);
color: var(--text-selection-color);
2017-05-02 00:31:13 +02:00
}
2017-01-21 22:31:41 +01:00
#window {
2017-05-02 00:31:13 +02:00
min-height: 100vh;
2017-08-18 07:37:35 +02:00
background: var(--window-bg);
2017-05-02 00:31:13 +02:00
}
2016-11-02 17:09:33 +01:00
.credit-amount--indicator {
2017-10-03 06:08:25 +02:00
font-weight: 500;
2017-08-18 07:37:35 +02:00
color: var(--color-money);
2017-05-02 00:31:13 +02:00
}
.credit-amount--fee {
font-size: 0.9em;
color: var(--color-meta-light);
}
2017-05-02 00:31:13 +02:00
.credit-amount--bold {
2017-12-01 04:51:55 +01:00
font-weight: 700;
}
#main-content {
margin: auto;
2017-05-02 00:31:13 +02:00
display: flex;
flex-direction: column;
overflow: overlay;
padding: $spacing-vertical;
position: absolute;
top: var(--header-height);
bottom: 0;
left: 4px;
right: 4px;
2017-05-02 00:31:13 +02:00
main {
margin-left: auto;
margin-right: auto;
max-width: 100%;
2016-11-02 17:09:33 +01:00
}
main.main--single-column {
2017-05-02 00:31:13 +02:00
width: $width-page-constrained;
2016-11-02 17:09:33 +01:00
}
2017-12-08 21:14:35 +01:00
main.main--no-margin {
margin-left: 0;
margin-right: 0;
}
2016-11-02 17:09:33 +01:00
}
.reloading {
2017-07-15 21:15:17 +02:00
&:before {
$width: 30px;
position: absolute;
2017-12-06 17:32:21 +01:00
background: url('../../../static/img/busy.gif') no-repeat center center;
2017-07-15 21:15:17 +02:00
width: $width;
height: $spacing-vertical;
content: '';
2017-07-15 21:15:17 +02:00
left: 50%;
margin-left: -1 / 2 * $width;
display: inline-block;
}
}
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;
2017-08-22 04:23:38 +02:00
background-color: var(--color-bg-alt);
2016-10-22 10:31:48 +02:00
}
p {
2016-04-24 10:59:55 +02:00
margin-bottom: 0.8em;
&:last-child {
2016-08-08 00:45:26 +02:00
margin-bottom: 0;
}
2016-04-24 10:59:55 +02:00
}
.hidden {
display: none;
}
.disabled {
pointer-events: none;
2017-08-17 06:53:37 +02:00
opacity: 0.5;
}
.truncated-text {
//display: inline-block;
display: -webkit-box;
overflow: hidden;
-webkit-box-orient: vertical;
}
.busy-indicator {
2017-12-06 17:32:21 +01:00
background: url('../../../static/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;
}
}
.help {
font-size: 0.85em;
2017-08-18 07:37:35 +02:00
color: var(--color-help);
}
.meta {
2016-08-08 06:47:48 +02:00
font-size: 0.9em;
2017-08-18 07:37:35 +02:00
color: var(--color-meta-light);
2016-08-08 06:47:48 +02:00
}
.empty {
color: var(--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;
2017-08-18 07:37:35 +02:00
color: var(--color-help);
2016-11-18 11:56:55 +01:00
}
section.section-spaced {
margin-bottom: $spacing-vertical;
}
2017-06-08 23:15:34 +02:00
.text-center {
2017-06-08 23:15:34 +02:00
text-align: center;
}