Bootstrap 5 updates continued

This commit is contained in:
Joey Kimsey
2024-12-14 06:15:47 -05:00
parent 41426fda4e
commit de6d608857
44 changed files with 439 additions and 389 deletions

View File

@ -15,6 +15,9 @@
.context-main-bg {
background-color: #2c2c2c;
}
.bg-default {
background-color: #2c2c2c;
}
.context-other {
color: #000;
}

View File

@ -9,12 +9,15 @@
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
*/
.context-other-bg {
background-color: #eaeaea;
}
.context-main-bg {
background-color: #f7f7f7;
}
/* Base styles for the switch container */
.material-switch {
position: relative;
@ -295,4 +298,15 @@ body {
.feature-icon-small {
width: 3rem;
height: 3rem;
}
}
.gradient-custom-2 {
/* fallback for old browsers */
background: #fccb90;
/* Chrome 10-25, Safari 5.1-6 */
background: -webkit-linear-gradient(to right, #2c2c2c, #1e1e1e, #1e1e1e);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background: linear-gradient(to right, #2c2c2c, #1e1e1e, #1e1e1e);
}