]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/sass/include/_variables.scss
Merge branch 'develop' into cli-wrapper
[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
7b272fd7
C
9$grey-color: #E5E5E5;
10$grey-hoover-color: #EFEFEF;;
b33f657c 11$orange-color: #F1680D;
ce0e281d 12$orange-hoover-color: #F97D46;
09223546 13
769ac6c1
RK
14$bg-color: #fff;
15$fg-color: #000;
41a676db
C
16
17$red: #FF0000;
18$green: #39CC0B;
383bfc83 19
22a16e36
C
20$grey-actor-name: #777272;
21
c30745f3 22$expanded-horizontal-margins: 150px;
d178b5c1 23$not-expanded-horizontal-margins: 30px;
c30745f3 24
b33f657c
C
25$button-height: 30px;
26
b33f657c 27$header-height: 50px;
383bfc83 28$header-border-color: #e9eff6;
26c6ee80
C
29$search-input-width: 375px;
30
9a0fc840 31$menu-background: #000;
26c6ee80 32$menu-color: #fff;
8afc19a6 33$menu-bottom-color: #C6C6C6;
26c6ee80 34$menu-width: 240px;
35c29307 35$menu-lateral-padding: 26px;
26c6ee80 36
9a0fc840
RK
37$sub-menu-color: #F7F7F7;
38
efbf0ed7
C
39$footer-height: 30px;
40$footer-margin: 30px;
41
897ec54d 42$footer-border-color: $header-border-color;
3290f37c
C
43
44$video-thumbnail-height: 110px;
45$video-thumbnail-width: 200px;
054a103b 46
432e7ddc 47$theater-bottom-space: 115px;
9a0fc840 48
db6d617d 49$input-background-color: $bg-color;
9a0fc840
RK
50$input-placeholder-color: #898989;
51
9a0fc840
RK
52/*** map theme ***/
53
54// pass variables into a sass map,
55// to be warned of non-existing variables
56$variables: (
57 --mainColor: var(--mainColor),
58 --mainHoverColor: var(--mainHoverColor),
59 --mainBackgroundColor: var(--mainBackgroundColor),
60 --mainForegroundColor: var(--mainForegroundColor),
1d9d9cfd
RK
61 --menuBackgroundColor: var(--menuBackgroundColor),
62 --menuForegroundColor: var(--menuForegroundColor),
9a0fc840
RK
63 --submenuColor: var(--submenuColor),
64 --inputColor: var(--inputColor),
65 --inputPlaceholderColor: var(--inputPlaceholderColor)
66);
67
68/*** theme helper ***/
69
70@function var($variable) {
71 @return map-get($variables, $variable);
72}