Skip to content

Commit

Permalink
adding some css for experiments later
Browse files Browse the repository at this point in the history
  • Loading branch information
brifordwylie committed Jul 3, 2024
1 parent 39b7ae9 commit e038144
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
22 changes: 22 additions & 0 deletions applications/aws_dashboard/static/dark.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
body {
background-color: #343a40;
color: #f8f9fa;
}

.card {
background-color: #495057;
border-color: #343a40;
}

.table {
border-color: #343a40;
}

.table thead {
background-color: #343a40;
}

.table tbody tr {
background-color: #495057;
}

22 changes: 22 additions & 0 deletions applications/aws_dashboard/static/light.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
body {
background-color: #f8f9fa;
color: #212529;
}

.card {
background-color: #ffffff;
border-color: #f8f9fa;
}

.table {
border-color: #f8f9fa;
}

.table thead {
background-color: #f8f9fa;
}

.table tbody tr {
background-color: #ffffff;
}

0 comments on commit e038144

Please sign in to comment.