master
parent
1ead061246
commit
f7a7dcba19
@ -1,3 +1,4 @@ |
||||
/venv/ |
||||
/db.sqlite3 |
||||
/media/ |
||||
/media/ |
||||
/tea/.env |
||||
|
||||
@ -0,0 +1,64 @@ |
||||
<!DOCTYPE html> |
||||
<html lang="en"> |
||||
<head> |
||||
<meta charset="UTF-8"> |
||||
<title>Title</title> |
||||
</head> |
||||
<body> |
||||
|
||||
</body> |
||||
<style> |
||||
table { |
||||
border: none; |
||||
margin-bottom: 20px; |
||||
} |
||||
|
||||
table th { |
||||
font-weight: bold; |
||||
text-align: left; |
||||
border: none; |
||||
padding: 10px 15px; |
||||
background: #d8d8d8; |
||||
font-size: 14px; |
||||
} |
||||
|
||||
table tr th:first-child { |
||||
border-radius: 8px 0 0 8px; |
||||
} |
||||
|
||||
table tr th:last-child { |
||||
border-radius: 0 8px 8px 0; |
||||
width: 35px; |
||||
} |
||||
|
||||
table td { |
||||
text-align: left; |
||||
border: none; |
||||
padding: 10px 15px; |
||||
font-size: 14px; |
||||
vertical-align: top; |
||||
} |
||||
|
||||
table tbody tr:nth-child(even) { |
||||
background: #f3f3f3; |
||||
} |
||||
|
||||
table tr td:first-child { |
||||
border-radius: 8px 0 0 8px; |
||||
} |
||||
|
||||
table tr td:last-child { |
||||
border-radius: 0 8px 8px 0; |
||||
} |
||||
|
||||
table tr.category_tr th { |
||||
border-radius: 8px 8px 8px 8px; |
||||
background: #ececec; |
||||
} |
||||
|
||||
table h3 { |
||||
margin-top: 0px; |
||||
margin-bottom: 0px; |
||||
} |
||||
</style> |
||||
</html> |
||||
Loading…
Reference in new issue