normalized tables with meyer reset, set up a rundimental table layout (need to change the name)
This commit is contained in:
@@ -29,6 +29,10 @@ html[data-theme='light'] {
|
||||
--panels-background: #222324;
|
||||
--panels-text: #ffffff;
|
||||
--accent-text: #ffffff;
|
||||
|
||||
--table-bg: #ffffff;
|
||||
--table-zebra: #c9c9c9;
|
||||
--table-highlight: #8f8f8f;
|
||||
}
|
||||
|
||||
html[data-theme='dark'] {
|
||||
@@ -39,6 +43,10 @@ html[data-theme='dark'] {
|
||||
--panels-background: #1a1a1a;
|
||||
--panels-text: #ffffff;
|
||||
--accent-text: #dfdfdf;
|
||||
|
||||
--table-bg: #141414;
|
||||
--table-zebra: #242424;
|
||||
--table-highlight: #747474;
|
||||
}
|
||||
|
||||
html[data-theme='purple'] {
|
||||
@@ -50,6 +58,10 @@ html[data-theme='purple'] {
|
||||
--panels-background: #100727;
|
||||
--panels-text: #ffffff;
|
||||
--accent-text: #dfdfdf;
|
||||
|
||||
--table-bg: #0c041b;
|
||||
--table-zebra: #130a29;
|
||||
--table-highlight: #321874;
|
||||
}
|
||||
|
||||
body {
|
||||
|
||||
23
public/css/modules/base/normalize.css
vendored
23
public/css/modules/base/normalize.css
vendored
@@ -4,6 +4,27 @@
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
:root {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
table,
|
||||
caption,
|
||||
tbody,
|
||||
tfoot,
|
||||
thead,
|
||||
tr,
|
||||
th,
|
||||
td {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font-size: 100%;
|
||||
font: inherit;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user