add a customized bootstrap stylesheet and new design board for some new ideas

582eaebb81a6145a9aa13567d6b9ab020871cd7c

Tucker McKnight <tmcknight@instructure.com> | Sun Nov 02 2025

add a customized bootstrap stylesheet and new design board for some new ideas
.gitignore:0
Before
After
-1
css
node_modules
main-slim.css:0
Before


















































⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
After
-1
0
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
:root {
  --bs-body-font-family: serif;
  --bs-body-bg: #F2E7BB;
  --bs-light-rgb: 233,234,222;
  --bs-secondary-bg-rgb: 227,129,79;
  /* --bs-secondary-bg-rgb: 103,121,245; blue */
}

.btn {
  --bs-btn-bg: #89E683;
  --bs-btn-border-color: #89E683;
  --bs-btn-color: black;
  --bs-border-radius-lg: 1rem;
  --bs-btn-font-family: sans-serif;
}

nav {
	font-family: sans-serif;
}

.btn.active {
  --bs-btn-active-bg: #91b7f5;
}

.btn-secondary {
  --bs-btn-bg: #91B7F5;
  --bs-btn-border-color: #91B7F5;
}

.btn-outline-secondary {
  --bs-btn-bg: none;
  --bs-btn-border-color: #F2E7BB;
  --bs-btn-color: #F2E7BB;
}

.input-group-text {
	--bs-tertiary-bg: #89E683;
}

.language-percentages {
  font-size: 0;
}

.language-name {
  display: inline-block;
  font-size: 0.8rem;
}
.language-percent {
  display: inline-block;
  margin: 0;
  padding: 0;
  height: 1rem;
}
package.json:0
Before



⁣
⁣
⁣
⁣
⁣
After
-1
0
1
2
3
{
  "dependencies": {
    "bootstrap": "^5.3.8",
    "sass": "^1.93.2"
  }
}