summaryrefslogtreecommitdiffstats
path: root/scss/main.scss
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-09-21 18:26:22 -0400
committerDrew DeVault <sir@cmpwn.com>2018-09-21 18:26:22 -0400
commit57ed00505aa190957d81690c0c9b758184a46302 (patch)
tree04de9bcaa2fc925ad58bec7a80420c9ce80097a8 /scss/main.scss
parent35854188daf6f2ec4ff77ff63e795b0c7d89da9b (diff)
Split up columns more, gray stuff out
Diffstat (limited to 'scss/main.scss')
-rw-r--r--scss/main.scss12
1 files changed, 6 insertions, 6 deletions
diff --git a/scss/main.scss b/scss/main.scss
index 1377ce6..d9e3ef5 100644
--- a/scss/main.scss
+++ b/scss/main.scss
@@ -19,7 +19,7 @@
.tree-list {
display: grid;
// mode name
- grid-template-columns: auto minmax(1fr,auto) 1fr auto;
+ grid-template-columns: auto minmax(1fr,auto) 1fr auto auto;
font: monospace;
svg {
@@ -34,8 +34,8 @@
color: $gray-900;
}
- .commit, .commit a {
- color: $gray-600;
+ .mode, .commit, .commit a, .date, .size {
+ color: $gray-700;
}
& > div {
@@ -50,13 +50,13 @@
text-align: center;
}
- @for $i from 1 through 4 {
- &:nth-child(4n+#{$i}) {
+ @for $i from 1 through 5 {
+ &:nth-child(5n+#{$i}) {
grid-column-start: $i;
}
// Striped rows
- &:nth-child(8n+#{$i}) {
+ &:nth-child(10n+#{$i}) {
background: rgba(0,0,0,.05);
}
}