2017-09-07 00:34:11 +02:00
|
|
|
/*
|
|
|
|
Both of these should probably die and become variables as well
|
|
|
|
*/
|
|
|
|
$spacing-vertical: 24px;
|
2018-03-26 23:32:43 +02:00
|
|
|
$spacing-width: 36px;
|
|
|
|
|
2018-06-19 22:22:42 +02:00
|
|
|
$medium-breakpoint: 1279px;
|
2018-06-18 18:26:04 +02:00
|
|
|
$large-breakpoint: 1921px;
|
2017-08-13 07:37:33 +02:00
|
|
|
|
2017-08-18 07:37:35 +02:00
|
|
|
:root {
|
2018-03-26 23:32:43 +02:00
|
|
|
/* Widths & spacings */
|
2018-08-03 20:28:11 +02:00
|
|
|
--side-nav-width: 160px;
|
2018-03-26 23:32:43 +02:00
|
|
|
--side-nav-width-m: 240px;
|
|
|
|
--side-nav-width-l: 320px;
|
2018-05-30 20:12:54 +02:00
|
|
|
--font-size-subtext-multiple: 0.92;
|
2018-03-26 23:32:43 +02:00
|
|
|
|
|
|
|
--video-aspect-ratio: 56.25%; // 9 x 16
|
|
|
|
--snack-bar-width: 756px;
|
|
|
|
|
2018-04-17 04:21:19 +02:00
|
|
|
/* Colors: Brand */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
|
|
|
--color-white: $lbry-white;
|
2018-03-26 23:32:43 +02:00
|
|
|
--color-black: #000;
|
|
|
|
--color-grey: #d6d6d6;
|
|
|
|
--color-grey-light: #f6f6f6;
|
|
|
|
--color-grey-dark: #888;
|
|
|
|
--color-primary: #44b098;
|
|
|
|
--color-primary-dark: #2c6e60;
|
|
|
|
--color-primary-light: #64c9b2;
|
|
|
|
--color-secondary: #6afbda;
|
|
|
|
--color-teal: #19a6a3;
|
|
|
|
--color-dark-blue: #2f6f61;
|
|
|
|
--color-light-blue: #49b2e2;
|
|
|
|
--color-red: #e2495e;
|
2018-08-09 18:41:14 +02:00
|
|
|
--color-yellow: #fbd55e;
|
2018-03-30 07:33:09 +02:00
|
|
|
--color-green: #399483;
|
|
|
|
--color-green-light: #effbe4;
|
|
|
|
--color-green-blue: #2ec1a8;
|
2018-04-24 02:24:31 +02:00
|
|
|
--color-purple: #8165b0;
|
2018-05-17 05:36:38 +02:00
|
|
|
--color-blue-grey: #203049;
|
2018-09-26 19:48:07 +02:00
|
|
|
--color-red-light: #fff6f6;
|
2018-10-17 00:29:55 +02:00
|
|
|
*/
|
2018-03-26 23:32:43 +02:00
|
|
|
|
2018-04-17 04:21:19 +02:00
|
|
|
/* Colors */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
2018-04-17 04:21:19 +02:00
|
|
|
--color-divider: #e3e3e3;
|
2017-10-15 05:52:23 +02:00
|
|
|
--color-help: rgba(0, 0, 0, 0.54);
|
2017-08-13 07:37:33 +02:00
|
|
|
--color-error: #a94442;
|
2018-06-14 22:10:50 +02:00
|
|
|
--color-nsfw: #bf4440;
|
2018-10-17 00:29:55 +02:00
|
|
|
--color-download: $lbry-white;
|
|
|
|
--color-download-overlay: $lbry-black;
|
2018-03-26 23:32:43 +02:00
|
|
|
--color-bg: #fafafa;
|
|
|
|
--color-bg-alt: var(--color-grey-light);
|
2018-04-17 04:21:19 +02:00
|
|
|
--color-placeholder: var(--color-grey);
|
2018-10-17 00:29:55 +02:00
|
|
|
--color-search-placeholder: $lbry-gray-3;
|
|
|
|
--color-credit-free: $lbry-blue-5;
|
|
|
|
--color-credit-price: $lbry-gray-5;
|
2018-10-04 06:11:08 +02:00
|
|
|
--color-text-black: #444;
|
|
|
|
--color-text-white: #efefef;
|
2018-10-17 00:29:55 +02:00
|
|
|
*/
|
2017-08-18 07:37:35 +02:00
|
|
|
|
|
|
|
/* Shadows */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
2018-04-17 04:21:19 +02:00
|
|
|
--box-shadow-layer: transparent; // 0 2px 4px rgba(0,0,0,0.25);
|
2018-03-26 23:32:43 +02:00
|
|
|
--box-shadow-button: 0 10px 20px rgba(0, 0, 0, 0.1);
|
2018-04-17 04:21:19 +02:00
|
|
|
--box-shadow-wunderbar: 0 10px 20px rgba(0, 0, 0, 0.03);
|
2018-10-17 00:29:55 +02:00
|
|
|
--box-shadow-header: 0 6px 20px 1px rgba(0, 0, 0, 0.05);
|
|
|
|
*/
|
2017-08-19 02:06:53 +02:00
|
|
|
|
2017-08-18 07:37:35 +02:00
|
|
|
/* Text */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
2018-10-04 06:11:08 +02:00
|
|
|
--text-color: var(--color-text-black);
|
|
|
|
--text-color-inverse: var(--color-text-white);
|
2018-10-17 00:29:55 +02:00
|
|
|
--text-help-color: $lbry-gray-5;
|
|
|
|
*/
|
2017-08-18 07:37:35 +02:00
|
|
|
--text-max-width: 660px;
|
|
|
|
--text-link-padding: 4px;
|
2017-08-19 06:33:01 +02:00
|
|
|
|
2018-07-28 22:17:06 +02:00
|
|
|
/* Text Selectiom */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
2018-07-28 22:17:06 +02:00
|
|
|
--text-selection-bg: var(--color-primary-light);
|
2018-10-17 00:29:55 +02:00
|
|
|
--text-selection-color: $lbry-white;
|
2018-07-28 22:17:06 +02:00
|
|
|
--editor-text-selection-bg: rgba(57, 148, 131, 0.8);
|
2018-10-17 00:29:55 +02:00
|
|
|
*/
|
2017-10-15 00:03:05 +02:00
|
|
|
/* Form */
|
2018-10-17 00:29:55 +02:00
|
|
|
// --form-label-color: rgba(0, 0, 0, 0.54);
|
2017-10-15 00:03:05 +02:00
|
|
|
|
2017-08-18 07:37:35 +02:00
|
|
|
/* Input */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
2017-08-26 22:47:37 +02:00
|
|
|
--input-bg: transparent;
|
2018-10-17 00:29:55 +02:00
|
|
|
--input-label-color: $lbry-gray-5;
|
|
|
|
--input-color: $lbry-black;
|
2018-03-26 23:32:43 +02:00
|
|
|
--input-border-size: 1px;
|
2018-10-17 00:29:55 +02:00
|
|
|
--input-border-color: $lbry-gray-5;
|
2018-04-17 04:21:19 +02:00
|
|
|
--input-copyable-bg: #f6f6f6;
|
2018-10-17 00:29:55 +02:00
|
|
|
--input-copyable-color: $lbry-gray-5;
|
2018-03-26 23:32:43 +02:00
|
|
|
--input-copyable-border: var(--color-grey);
|
2018-05-17 05:36:38 +02:00
|
|
|
--input-select-bg-color: var(--color-grey);
|
2018-10-17 00:29:55 +02:00
|
|
|
--input-select-color: $lbry-black;
|
2018-06-15 22:11:02 +02:00
|
|
|
--input-switch-color: var(--color-teal);
|
2018-10-17 00:29:55 +02:00
|
|
|
*/
|
2017-10-15 06:52:32 +02:00
|
|
|
|
|
|
|
/* input:disabled */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
2017-10-15 06:52:32 +02:00
|
|
|
--input-disabled-border-color: rgba(0, 0, 0, 0.42);
|
|
|
|
--input-disabled-color: rgba(0, 0, 0, 0.54);
|
2018-10-17 00:29:55 +02:00
|
|
|
*/
|
2017-10-15 06:52:32 +02:00
|
|
|
|
|
|
|
/* input:hover */
|
2018-10-17 00:29:55 +02:00
|
|
|
// --input-hover-border-color: rgba(0, 0, 0, 0.87);
|
2018-04-17 04:21:19 +02:00
|
|
|
|
2017-12-21 18:32:51 +01:00
|
|
|
/* input:placeholder */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
|
|
|
--input-placeholder-color: $lbry-gray-5;
|
2017-10-15 06:52:32 +02:00
|
|
|
--input-placeholder-opacity: 1;
|
2018-10-17 00:29:55 +02:00
|
|
|
*/
|
2017-08-13 07:37:33 +02:00
|
|
|
|
2017-08-20 07:58:03 +02:00
|
|
|
/* Select */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
|
|
|
--select-bg: $lbry-gray-1;
|
|
|
|
--select-color: $lbry-black;
|
|
|
|
*/
|
2018-01-21 20:29:48 +01:00
|
|
|
--select-height: 30px;
|
2017-08-20 07:58:03 +02:00
|
|
|
|
2017-08-18 07:37:35 +02:00
|
|
|
/* Button */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
|
|
|
--btn-bg-primary: $lbry-teal-3;
|
|
|
|
--btn-color-primary: $lbry-white;
|
2018-03-26 23:32:43 +02:00
|
|
|
--btn-bg-primary-hover: var(--color-primary-light);
|
2018-10-17 00:29:55 +02:00
|
|
|
--btn-bg-alt: $lbry-white;
|
|
|
|
--btn-color-alt: $lbry-black;
|
|
|
|
--btn-color-inverse: $lbry-teal-3;
|
2018-03-26 23:32:43 +02:00
|
|
|
--btn-external-color: var(--color-light-blue);
|
|
|
|
--btn-bg-secondary: var(--color-teal);
|
|
|
|
--btn-bg-danger: var(--color-red);
|
2018-10-17 00:29:55 +02:00
|
|
|
--btn-home-bg-color: $lbry-white;
|
|
|
|
*/
|
2018-03-26 23:32:43 +02:00
|
|
|
--btn-radius: 20px;
|
|
|
|
--btn-height: 36px;
|
2017-10-15 07:40:15 +02:00
|
|
|
|
2018-04-17 07:24:02 +02:00
|
|
|
/* SnackBar */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
|
|
|
--snackbar-bg-primary: $lbry-teal-3;
|
|
|
|
--snackbar-color-primary: $lbry-white;
|
|
|
|
*/
|
2018-04-17 07:24:02 +02:00
|
|
|
|
2017-08-18 07:37:35 +02:00
|
|
|
/* Header */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
|
|
|
--header-bg: $lbry-white;
|
2018-03-26 23:32:43 +02:00
|
|
|
--header-color: var(--color-text);
|
2017-12-21 18:32:51 +01:00
|
|
|
--header-active-color: rgba(0, 0, 0, 0.85);
|
2018-10-17 00:29:55 +02:00
|
|
|
*/
|
2018-06-25 08:53:13 +02:00
|
|
|
--header-height: 60px;
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
2018-03-26 23:32:43 +02:00
|
|
|
--header-button-bg: transparent;
|
2017-10-03 03:58:41 +02:00
|
|
|
--header-button-hover-bg: rgba(100, 100, 100, 0.15);
|
2018-10-17 00:29:55 +02:00
|
|
|
--header-primary-color: $lbry-teal-3;
|
|
|
|
*/
|
2017-08-13 07:37:33 +02:00
|
|
|
|
2017-08-19 06:33:01 +02:00
|
|
|
/* Header -> search */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
2017-08-19 06:33:01 +02:00
|
|
|
--search-color: #666;
|
2018-10-17 00:29:55 +02:00
|
|
|
--search-bg-color: $lbry-white;
|
2018-04-17 04:21:19 +02:00
|
|
|
--search-active-bg-color: var(--color-grey-light);
|
2017-08-19 06:33:01 +02:00
|
|
|
--search-active-color: var(--header-active-color);
|
2018-03-26 23:32:43 +02:00
|
|
|
--search-active-shadow: 0 6px 9px -2px var(--color-grey--dark);
|
2018-04-17 04:21:19 +02:00
|
|
|
--search-item-border-color: transparent;
|
2018-10-17 00:29:55 +02:00
|
|
|
--search-item-active-color: $lbry-black;
|
|
|
|
*/
|
2018-03-26 23:32:43 +02:00
|
|
|
--search-modal-input-height: 70px;
|
2018-10-17 00:29:55 +02:00
|
|
|
// --search-exact-result: #eaeaea;
|
2017-08-19 06:33:01 +02:00
|
|
|
|
2018-04-17 04:21:19 +02:00
|
|
|
/* Nav */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
|
|
|
--nav-color: $lbry-gray-5;
|
2018-04-17 04:21:19 +02:00
|
|
|
--nav-bg-color: var(--color-grey-light);
|
2018-10-17 00:29:55 +02:00
|
|
|
*/
|
2018-04-17 04:21:19 +02:00
|
|
|
|
2017-08-19 06:33:01 +02:00
|
|
|
/* Table */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
2018-04-17 04:21:19 +02:00
|
|
|
--table-border: 1px solid var(--color-grey-light);
|
|
|
|
--table-item-odd: var(--color-grey-light);
|
|
|
|
--table-item-even: transparent;
|
2018-10-17 00:29:55 +02:00
|
|
|
*/
|
2017-08-13 07:37:33 +02:00
|
|
|
|
2017-08-18 07:37:35 +02:00
|
|
|
/* Card */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
|
|
|
--card-bg: $lbry-white;
|
|
|
|
--card-text-color: $lbry-gray-5;
|
|
|
|
*/
|
2017-08-18 07:37:35 +02:00
|
|
|
--card-radius: 2px;
|
2018-06-18 18:30:24 +02:00
|
|
|
--card-max-width: 1000px;
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
|
|
|
--card-wallet-color: $lbry-white;
|
2018-03-30 07:33:09 +02:00
|
|
|
--success-msg-color: var(--color-green);
|
2018-10-17 00:29:55 +02:00
|
|
|
--success-msg-border: mix($lbry-green-3, $lbry-blue-3, 50%);
|
2018-03-30 07:33:09 +02:00
|
|
|
--success-msg-bg: var(--color-green-light);
|
2018-10-17 00:29:55 +02:00
|
|
|
--error-msg-color: $lbry-red-5;
|
|
|
|
--error-msg-border: $lbry-red-5;
|
2018-09-26 19:48:07 +02:00
|
|
|
--error-msg-bg: var(--color-red-light);
|
2018-10-17 00:29:55 +02:00
|
|
|
*/
|
2018-03-26 23:32:43 +02:00
|
|
|
|
2018-07-25 20:21:41 +02:00
|
|
|
/* File */
|
|
|
|
--file-tile-media-height: 125px;
|
|
|
|
--file-tile-media-width: calc(125px * (16 / 9));
|
|
|
|
--file-tile-media-height-small: 60px;
|
|
|
|
--file-tile-media-width-small: calc(60px * (16 / 9));
|
2018-08-14 05:52:09 +02:00
|
|
|
--file-tile-media-height-large: 200px;
|
|
|
|
--file-tile-media-width-large: calc(200px * (16 / 9));
|
2018-07-25 20:21:41 +02:00
|
|
|
--file-page-min-width: 400px;
|
|
|
|
--recommended-content-width: 300px;
|
|
|
|
--recommended-content-width-medium: 400px;
|
2017-08-13 07:37:33 +02:00
|
|
|
|
2017-08-19 06:33:01 +02:00
|
|
|
/* Modal */
|
2017-12-07 19:07:30 +01:00
|
|
|
--modal-width: 440px;
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
|
|
|
--modal-bg: rgba($lbry-gray-1, 0.5);
|
|
|
|
--modal-fullscreen-bg: rgba($lbry-gray-1, 0.5);
|
2018-04-17 04:21:19 +02:00
|
|
|
--modal-overlay-bg: rgba(246, 246, 246, 0.75);
|
2017-08-19 06:33:01 +02:00
|
|
|
--modal-border: 1px solid rgb(204, 204, 204);
|
2018-10-17 00:29:55 +02:00
|
|
|
--modal-btn-bg-color: $lbry-white;
|
|
|
|
*/
|
2017-08-19 06:33:01 +02:00
|
|
|
|
2018-03-26 23:32:43 +02:00
|
|
|
// /* Tooltip */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
2018-05-23 02:11:20 +02:00
|
|
|
--tooltip-bg: #555;
|
2018-10-17 00:29:55 +02:00
|
|
|
--tooltip-color: $lbry-white;
|
|
|
|
*/
|
2017-09-17 21:32:56 +02:00
|
|
|
|
|
|
|
/* Scrollbar */
|
2018-10-17 00:29:55 +02:00
|
|
|
/*
|
2017-09-17 21:32:56 +02:00
|
|
|
--scrollbar-radius: 10px;
|
2017-12-21 18:32:51 +01:00
|
|
|
--scrollbar-thumb-bg: rgba(0, 0, 0, 0.2);
|
2017-09-17 21:32:56 +02:00
|
|
|
--scrollbar-thumb-hover-bg: rgba(0, 0, 0, 0.35);
|
2018-10-17 00:29:55 +02:00
|
|
|
--scrollbar-thumb-active-bg: $lbry-teal-3;
|
2017-09-17 21:32:56 +02:00
|
|
|
--scrollbar-track-bg: transparent;
|
2018-10-17 00:29:55 +02:00
|
|
|
*/
|
2017-09-21 18:48:29 +02:00
|
|
|
|
2018-03-26 23:32:43 +02:00
|
|
|
// /* Animation :) */
|
2017-10-03 03:35:52 +02:00
|
|
|
--animation-duration: 0.3s;
|
2017-12-21 18:32:51 +01:00
|
|
|
--animation-style: cubic-bezier(0.55, 0, 0.1, 1);
|
2018-07-18 17:55:17 +02:00
|
|
|
|
|
|
|
/* Image */
|
|
|
|
--thumbnail-preview-height: 100px;
|
|
|
|
--thumbnail-preview-width: 177px;
|
2017-08-13 07:37:33 +02:00
|
|
|
}
|