diff options
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/_custom.scss | 20 | ||||
-rw-r--r-- | app/assets/stylesheets/_styles.scss | 4 | ||||
-rw-r--r-- | app/assets/stylesheets/application.bootstrap.scss | 1 |
3 files changed, 23 insertions, 2 deletions
diff --git a/app/assets/stylesheets/_custom.scss b/app/assets/stylesheets/_custom.scss new file mode 100644 index 0000000..4a18dd1 --- /dev/null +++ b/app/assets/stylesheets/_custom.scss @@ -0,0 +1,20 @@ +@import 'bootstrap/scss/bootstrap'; + +$nav-link-color: green; +$nav-link-hover-color: darkgreen; + + +@import 'bootstrap/scss/bootstrap'; + +table { + width: 100%; + border-collapse: collapse; + background: lightgreen; + margin-top: 30px; + table-layout: fixed; + border: 2px solid; +} +td { + border: 1px solid; + padding: 3px; +} diff --git a/app/assets/stylesheets/_styles.scss b/app/assets/stylesheets/_styles.scss index 95ca513..4c8c5de 100644 --- a/app/assets/stylesheets/_styles.scss +++ b/app/assets/stylesheets/_styles.scss @@ -11,7 +11,7 @@ table { table-layout: fixed; border: 2px solid; } -th, td { - border: 1px solid; +td { + border-width: 2px; padding: 3px; } diff --git a/app/assets/stylesheets/application.bootstrap.scss b/app/assets/stylesheets/application.bootstrap.scss index add77b4..9c9fe1b 100644 --- a/app/assets/stylesheets/application.bootstrap.scss +++ b/app/assets/stylesheets/application.bootstrap.scss @@ -1,3 +1,4 @@ @import 'bootstrap/scss/bootstrap'; @import 'bootstrap-icons/font/bootstrap-icons'; @import '_styles.scss'; +@import '_custom.scss'; |