summaryrefslogtreecommitdiff
path: root/day9/task5/static/css/TableStyle.css
diff options
context:
space:
mode:
Diffstat (limited to 'day9/task5/static/css/TableStyle.css')
-rw-r--r--day9/task5/static/css/TableStyle.css23
1 files changed, 23 insertions, 0 deletions
diff --git a/day9/task5/static/css/TableStyle.css b/day9/task5/static/css/TableStyle.css
new file mode 100644
index 0000000..61f2f28
--- /dev/null
+++ b/day9/task5/static/css/TableStyle.css
@@ -0,0 +1,23 @@
+table {
+ border-spacing: 0;
+ padding: 0;
+ border: 1px solid black;
+}
+
+thead > tr > th {
+ padding: 6px;
+ font-size: 16px;
+ background-color: #6f6f6f;
+}
+
+td {
+ padding: 3px;
+ font-size: 13px;
+}
+
+.odd { background-color: #dedede; }
+.even { background-color: #c5c5c5; }
+
+.editableField:hover {
+ background-color: rgba(0, 0, 0, 0.3);
+}