aboutsummaryrefslogtreecommitdiff
path: root/src/style.css
diff options
context:
space:
mode:
authoreug-vs <eugene@eug-vs.xyz>2022-06-11 13:59:34 +0300
committereug-vs <eugene@eug-vs.xyz>2022-06-11 14:01:07 +0300
commit0c7c2c8b5033cceb064a34cbb640d1272fff8ed8 (patch)
tree43f86404064014680a6d29b37651803e514bc9a5 /src/style.css
parent3e3e29527f7bf7b72363a1193b3ee310b1adc2fa (diff)
downloadchrono-cube-ui-master.tar.gz
feat: use table for solutions representationHEADmaster
Diffstat (limited to 'src/style.css')
-rw-r--r--src/style.css12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/style.css b/src/style.css
index e4eb8a5..54ea856 100644
--- a/src/style.css
+++ b/src/style.css
@@ -54,9 +54,11 @@ code {
border-radius: 4px;
border: 1px solid rgba(255, 255, 255, 0.12);
}
-
-.SolutionCard {
- border: 1px solid rgba(255, 255, 255, 0.12);
- padding: 4px;
- margin: 8px;
+table {
+ width: 100%;
+ border-collapse: collapse;
}
+table tr:nth-child(2n) {
+ background: #1d2021;
+}
+