Skip to content

Commit 0caed01

Browse files
committed
update scss
1 parent 2c4bdbb commit 0caed01

3 files changed

Lines changed: 22 additions & 6 deletions

File tree

_sass/_bootstrap_variables.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
/*-----Theme colors-----*/
22
$primary: #012152;
33
$secondary: #6c757d;
4-
$light: #f8f9fa;
4+
$light: #f0f3fa;
55
$dark: #212529;
6+
$white: #fff;
67

78
/*-----Custom values for Bootstrap variables-----*/
89
$link-decoration: none;
910
$navbar-light-hover-color: $light;
11+
$body-bg: $light;
12+
$card-bg: $white;
13+
$border-radius: 20px;
14+
$link-color: blue;
1015

1116
// Find out which bootstrap variables you can use to fine tune the styling of your website here: https://github.com/ELIXIR-Belgium/elixir-toolkit-theme/blob/main/_sass/bootstrap/_variables.scss

_sass/_custom_classes.scss

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,14 @@
6060
color: $primary;
6161
padding: 7px 11px;
6262
}
63-
}
63+
}
64+
65+
#main {
66+
background-color: $white;
67+
border-radius: $border-radius;
68+
padding: $spacer * 3;
69+
margin-bottom: $spacer * 3;
70+
#content {
71+
margin-bottom: 0 !important;
72+
}
73+
}

_sass/_custom_variables.scss

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ $topnav-bg: $primary;
55
$topnav-title-color: $white;
66

77
/*-----Section navigation tiles-----*/
8-
$nav-card-bg: $primary;
9-
$nav-card-color: $white;
10-
$nav-card-bg-hover: $light;
11-
$nav-card-color-hover: $primary;
8+
9+
$nav-card-bg: $light;
10+
$nav-card-color: $primary;
11+
$nav-card-bg-hover: $primary;
12+
$nav-card-color-hover: $white;

0 commit comments

Comments
 (0)