summaryrefslogtreecommitdiff
path: root/src/env/assets/styles/_ibs.scss
blob: 8ed06a8d5e137a861555ad0e49cdd5fb22b8a912 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
@font-face {
  font-family: 'Inter';
  src: url('~@/env/assets/fonts/Inter/Inter-ExtraLight.woff2') format('woff2');
  font-weight: 200;
}
@font-face {
  font-family: 'Inter';
  src: url('~@/env/assets/fonts/Inter/Inter-ExtraLightItalic.woff2') format('woff2');
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: 'Inter';
  src: url('~@/env/assets/fonts/Inter/Inter-Light.woff2') format('woff2');
  font-weight: 300;
}
@font-face {
  font-family: 'Inter';
  src: url('~@/env/assets/fonts/Inter/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
}
@font-face {
  font-family: 'Inter';
  src: url('~@/env/assets/fonts/Inter/Inter-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Inter';
  src: url('~@/env/assets/fonts/Inter/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'Inter';
  src: url('~@/env/assets/fonts/Inter/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
}
@font-face {
  font-family: 'Inter';
  src: url('~@/env/assets/fonts/Inter/Inter-BoldItalic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
}

// IBS uses Inter https://github.com/rsms/inter

$font-family-base: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

$dark: #2c405a;

$red: #E11717;
$red-hover: #FC2A2A;
$red-active: #df2323;
$red-disabled: #E17171;
$red-click: #C71414;
$red-shadow: #e1171780;
$red-light-background: #e117170d;

$gray-2: #fbfbfc;
$gray-5: #1a3e5b0d;
$gray-5-hover: #1427351a;
$gray-10: #1a3e5b1a;
$gray-20: #1a3e5b33;
$red-40:#e1171766;

$surface-secondary: #F3F4F5;
$on-surface-secondary: #040a0f99;
$on-surface-tretiatry: #040A0F4D;

$text-primary: #0C1C29;
$text-secondary: #0C1C29E5;
$text-tretiatry: #0c1c2999;
$text-quaternary: #0c1c294d;

$login-page-description-color: #0c1c2999;

$primary: $red;

$border-radius: 8px;

$loading-color: #c11d1d;
$navbar-color: $dark;

.login-form {
  background-color: transparent !important;
}

//
// botstrap-vue overrides:
//
[class*="table-responsive-"] {
  overflow: auto;
}

//
// Scrollbars:
//
/* W3C standard: Firefox only */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(12,32,64,.5) transparent;
}

/* For Chrome/Edge/Safari */
*::-webkit-scrollbar {
  height: 12px;
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(12,32,64,.5);
  border-radius: 5px;
  border: 3px solid transparent;
}