-
Notifications
You must be signed in to change notification settings - Fork 819
/
Copy path_variables_project.scss
39 lines (33 loc) · 1.07 KB
/
_variables_project.scss
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
/*
Add styles or override the theme's variables here.
*/
html.smooth-scroll {
scroll-behavior: smooth;
}
// Bootstrap container-max-widths
// NOTE: we increase the max-widths to make the content wider compared to the Bootstrap defaults
$container-max-widths: (
sm: 768px, // default: 540px, breakpoint: 576px
md: 992px, // default: 720px, breakpoint: 768px
lg: 1200px, // default: 960px, breakpoint: 992px
xl: 1440px // default: 1140px, breakpoint: 1200px
);
// Kubeflow colors
// https://github.com/kubeflow/marketing-materials/blob/master/logos/Logo-File-Guide.pdf
$kf-blue: #4279f4;
$kf-darkblue: #0028aa;
$kf-darkblue-alt: #213d7a;
// Theme colors
// NOTE: we don't use $kf-darkblue as $dark because it looks bad.
$primary: $kf-blue;
$secondary: #fff;
$dark: $kf-darkblue-alt;
$info: #17a2b8;
$light: #dee2e6;
// Nav bar colors
$white: #fff;
$navbar-dark-color: rgba($white, 1);
$navbar-dark-hover-color: rgba($white, 0.75);
$navbar-dark-active-color: $navbar-dark-color;
// Fonts
$google_font_family: "Open+Sans:300,300i,400,400i,600,600i,700,700i&display=swap" !default;