13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
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
 
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700,300");
 
// Grid columns
//
// Set the number of columns and specify the width of the gutters.
 
$grid-columns:               12 !default;
$grid-gutter-width:          1.5rem !default; // 24px
 
 
 
//Bootstrap overwrite
 
$gray-dark:                 #373a3c;
$gray:                      #55595c;
$gray-light:                #818a91;
$gray-lighter:              #eceeef;
$gray-lightest:             #f7f7f9;
 
$brand-primary:             #039cfd;
$brand-success:             #1bb99a;
$brand-info:                #3db9dc;
$brand-warning:             #f1b53d;
$brand-danger:              #ff5d48;
 
 
// Custom colors
$white:               #ffffff;
$custom:              #64b0f2;
$dark:                #2b3d51;
$pink:                #ff7aa3;
$purple:              #9261c6;
 
 
$body-bg:                    #f5f5f5;
$body-color:                 $dark;
 
 
 
 
// Links
//
// Style anchor elements.
 
$link-color:                 $custom;
$link-hover-color:           darken($link-color, 15%) !default;
$link-hover-decoration:      none;
 
// Typography
//
// Font, line-height, and color for body text, headings, and more.
 
$font-family-sans-serif:     'Roboto', sans-serif;
 
// Pixel value used to responsively scale all typography. Applied to the `<html>` element.
$font-size-root:             14px !default;
$font-size-base:             1rem !default;
 
 
// Form states and alerts
//
// Define colors for form feedback states and, by default, alerts.
 
$state-success-text:             #1bb99a !default;
$state-success-bg:               #B6E9DF !default;
$state-success-border:           darken($state-success-bg, 5%) !default;
 
$state-info-text:                #23a0c3 !default;
$state-info-bg:                  #ABDBE8 !default;
$state-info-border:              darken($state-info-bg, 7%) !default;
 
$state-warning-text:             #eaa211 !default;
$state-warning-bg:               #FAE8C4 !default;
$state-warning-border:           darken($state-warning-bg, 5%) !default;
 
$state-danger-text:              #ff3015 !default;
$state-danger-bg:                #FFCCC5 !default;
$state-danger-border:            darken($state-danger-bg, 5%) !default;
 
 
//Import bootstrap variables
@import "bootstrap/variables";