generated from Codaisseur/react-redux-jwt-bootstrap-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from atiehamidi/fear-add-styling
added some styling for admin dashboard
- Loading branch information
Showing
2 changed files
with
38 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
.adminPage { | ||
background: url("https://image.freepik.com/free-vector/bons-foot-prints-pattern-background_1374-18.jpg"); | ||
color: white; | ||
padding: 20px; | ||
} | ||
|
||
.customers { | ||
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; | ||
border-collapse: collapse; | ||
width: 100%; | ||
} | ||
|
||
.customers td, | ||
.customers thead { | ||
border: 1px solid #ddd; | ||
padding: 8px; | ||
} | ||
|
||
.customers tr:nth-child(even) { | ||
background-color: black; | ||
} | ||
|
||
.customers tr:hover { | ||
background-color: grey; | ||
} | ||
|
||
#customers thead { | ||
padding-top: 12px; | ||
padding-bottom: 12px; | ||
text-align: left; | ||
background-color: #4caf50; | ||
color: white; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters