diff options
author | yigit sever | 2021-04-16 13:40:17 +0000 |
---|---|---|
committer | yigit sever | 2021-04-16 13:40:17 +0000 |
commit | e81b6af56436be291adf31f770c6ef7e8ddfdbd0 (patch) | |
tree | b1d02cfccf1f3004f5a9e6bcc68dfef180c08150 /templates/css.html | |
parent | c28b07a494ea39f91283601251061366a9f5e93e (diff) | |
parent | 204dbc1f887f42e4a5ea734895ef36c5c434890f (diff) | |
download | gradecoin-e81b6af56436be291adf31f770c6ef7e8ddfdbd0.tar.gz gradecoin-e81b6af56436be291adf31f770c6ef7e8ddfdbd0.tar.bz2 gradecoin-e81b6af56436be291adf31f770c6ef7e8ddfdbd0.zip |
Merge pull request 'Add existing user get support' (#1) from usershow into main
Reviewed-on: https://git.yigitsever.com/yigit/gradecoin/pulls/1
Diffstat (limited to 'templates/css.html')
-rw-r--r-- | templates/css.html | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/templates/css.html b/templates/css.html index c9d54e3..a918a4b 100644 --- a/templates/css.html +++ b/templates/css.html | |||
@@ -1,8 +1,23 @@ | |||
1 | <style> | 1 | <style> |
2 | td, th { | 2 | table, th, td { |
3 | padding: 8px; | 3 | border: 1px solid black; |
4 | } | 4 | border-collapse: collapse; |
5 | th { | 5 | } |
6 | text-align: left; | 6 | th, td { |
7 | } | 7 | padding: 15px; |
8 | } | ||
9 | #t01 { | ||
10 | width: 100%; | ||
11 | background-color: #fbf1c7; | ||
12 | } | ||
13 | #t01 tr:nth-child(even) { | ||
14 | background-color: #a89984; | ||
15 | } | ||
16 | #t01 tr:nth-child(odd) { | ||
17 | background-color: #f9f5d7; | ||
18 | } | ||
19 | #t01 th { | ||
20 | color: #fbf1c7; | ||
21 | background-color: #282828; | ||
22 | } | ||
8 | </style> | 23 | </style> |