Skip to content

Commit

Permalink
comments and examples
Browse files Browse the repository at this point in the history
  • Loading branch information
ropalko committed May 8, 2024
1 parent 3dbe9f6 commit 9911661
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
9 changes: 9 additions & 0 deletions theme/theme-examples.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
/* This is are some examples of how to change default stylings or stylings for certain elements */

:root,
[data-bs-theme="default-theme"] {
/* Bootstrap Default is 24px, if you want to change the gutter use this variable */
.row {
--bs-gutter-x: 30px;
}

/* Change the font-color for only main tag and its content */
main {
--bs-body-color: #fff;
}

/* Change the background for most input fields */
.form-control {
--bs-body-bg: red;
}
Expand Down
9 changes: 2 additions & 7 deletions theme/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
--bs-primary: #0060AC;
--bs-secondary: #001D38;

/* */
/* Background Color for the backmost level */
--theme-backdrop-bg: #E5E5E5;

/* */
/* Default Background-Color and Color */
--bs-body-bg: #fff;
--bs-body-color: #222222;

Expand Down Expand Up @@ -43,11 +43,6 @@
--bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
--bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
*/

/* Bootstrap Default is 24px, if you want to change the gutter use this variable */
/* .row {
--bs-gutter-x: 30px;
} */

/* Main Button-Colors */
.btn-primary {
Expand Down

0 comments on commit 9911661

Please sign in to comment.