aboutsummaryrefslogtreecommitdiffstats
path: root/templates/css.html
diff options
context:
space:
mode:
authorYigit Sever2021-04-22 20:15:40 +0300
committerYigit Sever2021-04-25 23:04:39 +0300
commit32b49380880aab00057b8a663b5327d6f58def3a (patch)
tree059dc128813a93679233f5489cf1a42b2ea0374d /templates/css.html
parent97b2f6c796fd2af1c338725884189685a82adc01 (diff)
downloadgradecoin-32b49380880aab00057b8a663b5327d6f58def3a.tar.gz
gradecoin-32b49380880aab00057b8a663b5327d6f58def3a.tar.bz2
gradecoin-32b49380880aab00057b8a663b5327d6f58def3a.zip
Implement nicenet
- There are bot accounts that return what you sent them - Sending a transaction generates some coin out of thin air - No more one tx per person per block limit - Unused transactions do not disappear anymore
Diffstat (limited to 'templates/css.html')
-rw-r--r--templates/css.html21
1 files changed, 14 insertions, 7 deletions
diff --git a/templates/css.html b/templates/css.html
index a918a4b..4a2ac7b 100644
--- a/templates/css.html
+++ b/templates/css.html
@@ -1,23 +1,30 @@
1<style> 1<style>
2
3body {
4 font-family: monospace, Times, serif;
5 margin: 2em auto;
6 max-width: 800px;
7}
8
2table, th, td { 9table, th, td {
3 border: 1px solid black; 10 border: 1px solid black;
4 border-collapse: collapse; 11 border-collapse: collapse;
5} 12}
6th, td { 13th, td {
7 padding: 15px; 14 padding: 10px;
8} 15}
9#t01 { 16#t01 {
10 width: 100%; 17 width: 100%;
11 background-color: #fbf1c7; 18 background-color: #fbf1c7;
12} 19}
13#t01 tr:nth-child(even) { 20#t01 tr:nth-child(even) {
14 background-color: #a89984; 21 background-color: #a89984;
15} 22}
16#t01 tr:nth-child(odd) { 23#t01 tr:nth-child(odd) {
17 background-color: #f9f5d7; 24 background-color: #f9f5d7;
18} 25}
19#t01 th { 26#t01 th {
20 color: #fbf1c7; 27 color: #fbf1c7;
21 background-color: #282828; 28 background-color: #282828;
22} 29}
23</style> 30</style>