diff options
author | yigit sever | 2021-04-16 13:40:17 +0000 |
---|---|---|
committer | yigit sever | 2021-04-16 13:40:17 +0000 |
commit | c6b90ff7abe2122fbac8f9e1066bd8cecbf135cd (patch) | |
tree | 9835fb758c15d1ed36b95b950e23bf883da87738 /templates/css.html | |
parent | 9a9bc6522810d49a46f6762cca68daf81ba60390 (diff) | |
parent | e7cd705175abb820cd4bfdb28693615ef2171597 (diff) | |
download | gradecoin-c6b90ff7abe2122fbac8f9e1066bd8cecbf135cd.tar.gz gradecoin-c6b90ff7abe2122fbac8f9e1066bd8cecbf135cd.tar.bz2 gradecoin-c6b90ff7abe2122fbac8f9e1066bd8cecbf135cd.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> |