-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix list slicing in db and styling of index page.
- Loading branch information
Ankit Rajpoot
committed
Nov 1, 2018
1 parent
ec18a7d
commit 43e086d
Showing
3 changed files
with
40 additions
and
10 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
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 |
---|---|---|
@@ -1,3 +1,32 @@ | ||
.logs-table { | ||
border: 1px solid red; | ||
html { | ||
font-size: 1em; | ||
} | ||
|
||
table { | ||
font-size:16px; | ||
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; | ||
border-collapse: collapse; | ||
border-spacing: 0; | ||
width: 100%; | ||
} | ||
|
||
table th { | ||
padding-top: 11px; | ||
padding-bottom: 11px; | ||
background-color: #4CAF50; | ||
color: white; | ||
} | ||
|
||
table td, table th { | ||
border: 1px solid #ddd; | ||
text-align: left; | ||
padding: 8px; | ||
} | ||
|
||
table tr:nth-child(even){background-color: #f2f2f2} | ||
|
||
button { | ||
width: 100%; | ||
height: 40px; | ||
margin-bottom: 20px; | ||
} |
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