aboutsummaryrefslogtreecommitdiff
path: root/packages/client/src/scss/_bootstrap.scss
blob: b7cc84f0ec3fb73713ed1e1d6d50cea15f4dbb9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
@import "~bootstrap/scss/functions";
@import "~bootstrap/scss/variables";
@import "~bootstrap/scss/mixins";

$theme-colors: (
  "primary":    colors.$primary,
  "secondary":  colors.$secondary,
  "success":    colors.$success,
  "info":       $info,
  "warning":    $warning,
  "danger":     colors.$danger,
  "light":      $light,
  "dark":       $dark
);

$font-size-base: 0.75rem;

$h1-font-size:                $font-size-base * 2.5;
$h2-font-size:                $font-size-base * 2;
$h3-font-size:                $font-size-base * 1.75;
$h4-font-size:                $font-size-base * 1.5;
$h5-font-size:                $font-size-base * 1.125;
$h6-font-size:                $font-size-base;

$font-sizes: (
  1: $h1-font-size,
  2: $h2-font-size,
  3: $h3-font-size,
  4: $h4-font-size,
  5: $h5-font-size,
  6: $h6-font-size
);

$input-bg: lighten(#000000, 12%);
$input-disabled-bg: lighten(#000000, 12%);
$input-color: colors.$text;
$input-focus-color: colors.$text;
$input-focus-box-shadow: none;
$input-disabled-border-color: lighten(#000000, 50%);
$input-height-sm: auto;

$btn-padding-y-sm: 0.15rem;
$btn-padding-x-sm: 0.4rem;

$table-cell-padding-x: 1rem;
$table-cell-padding-y: 0.2rem;

$table-variants: (
  "primary":    shift-color($primary, $table-bg-scale),
  "secondary":  shift-color($secondary, $table-bg-scale),
  "success":    shift-color($success, $table-bg-scale),
  "info":       shift-color($info, $table-bg-scale),
  "warning":    shift-color($warning, $table-bg-scale),
  "danger":     shift-color($danger, $table-bg-scale),
  "light":      $light,
  "dark":       colors.$background,
);

@media (max-width: 1200px) {
	.fs-1 {
		font-size: calc(1.375rem + 0.667vw) !important;
	}
	.fs-2 {
		font-size: calc(1.325rem + 1.584vw) !important;
	}
	.fs-3 {
		font-size: calc(1.3rem + 0.017vw) !important;
	}
	.fs-4 {
		font-size: calc(0.82rem + 0.4vw) !important;
	}
	.fs-5 {
		font-size: calc(0.65rem + 0.25vw) !important;
	}
}