]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/sass/include/_variables.scss
search filtering improvements per #1654
[github/Chocobozzz/PeerTube.git] / client / src / sass / include / _variables.scss
CommitLineData
8ff3f883
C
1$small-view: 800px;
2$mobile-view: 500px;
3
8a8e02a4 4$main-fonts: 'Source Sans Pro', sans-serif;
b33f657c
C
5$font-regular: 400;
6$font-semibold: 600;
7$font-bold: 700;
8
457bb213
C
9$grey-background-color: #E5E5E5;
10$grey-background-hover-color: #EFEFEF;
11$grey-foreground-color: #585858;
12$grey-foreground-hover-color: #303030;
13
b33f657c 14$orange-color: #F1680D;
457bb213 15$orange-hover-color: #F97D46;
09223546 16
2fcc2294
C
17$support-button: #38981a;
18
769ac6c1
RK
19$bg-color: #fff;
20$fg-color: #000;
41a676db
C
21
22$red: #FF0000;
23$green: #39CC0B;
383bfc83 24
22a16e36
C
25$grey-actor-name: #777272;
26
c30745f3 27$expanded-horizontal-margins: 150px;
d178b5c1 28$not-expanded-horizontal-margins: 30px;
c30745f3 29
b33f657c
C
30$button-height: 30px;
31
b33f657c 32$header-height: 50px;
383bfc83 33$header-border-color: #e9eff6;
26c6ee80
C
34$search-input-width: 375px;
35
9a0fc840 36$menu-background: #000;
26c6ee80 37$menu-color: #fff;
8afc19a6 38$menu-bottom-color: #C6C6C6;
26c6ee80 39$menu-width: 240px;
35c29307 40$menu-lateral-padding: 26px;
26c6ee80 41
9a0fc840
RK
42$sub-menu-color: #F7F7F7;
43
efbf0ed7
C
44$footer-height: 30px;
45$footer-margin: 30px;
46
897ec54d 47$footer-border-color: $header-border-color;
3290f37c 48
f0a39880
C
49$separator-border-color: rgba(0, 0, 0, 0.10);
50
11dd0c2e 51$video-miniature-width: 238px;
dc890263 52$video-miniature-margin-bottom: 30px;
e5fc7811
C
53$video-thumbnail-height: 122px;
54$video-thumbnail-width: 223px;
8fc02e47 55$video-thumbnail-ratio: $video-thumbnail-width / $video-thumbnail-height;
054a103b 56
432e7ddc 57$theater-bottom-space: 115px;
9a0fc840 58
db6d617d 59$input-background-color: $bg-color;
9a0fc840
RK
60$input-placeholder-color: #898989;
61
bce47964
C
62$sub-menu-margin-bottom: 30px;
63
9a0fc840
RK
64/*** map theme ***/
65
66// pass variables into a sass map,
67// to be warned of non-existing variables
68$variables: (
69 --mainColor: var(--mainColor),
70 --mainHoverColor: var(--mainHoverColor),
71 --mainBackgroundColor: var(--mainBackgroundColor),
72 --mainForegroundColor: var(--mainForegroundColor),
2fcc2294 73
1d9d9cfd
RK
74 --menuBackgroundColor: var(--menuBackgroundColor),
75 --menuForegroundColor: var(--menuForegroundColor),
9a0fc840 76 --submenuColor: var(--submenuColor),
2fcc2294 77
9a0fc840 78 --inputColor: var(--inputColor),
5efab546 79 --inputPlaceholderColor: var(--inputPlaceholderColor),
2fcc2294
C
80
81 --supportButtonColor: var(--supportButtonColor),
82 --supportButtonBackgroundColor: var(--supportButtonBackgroundColor),
83
5efab546
C
84 --embedForegroundColor: var(--embedForegroundColor),
85 --embedBigPlayBackgroundColor: var(--embedBigPlayBackgroundColor)
9a0fc840
RK
86);
87
88/*** theme helper ***/
89
90@function var($variable) {
91 @return map-get($variables, $variable);
92}