diff options
| author | julian laplace <julescarbon@gmail.com> | 2022-10-26 13:47:25 +0200 |
|---|---|---|
| committer | julian laplace <julescarbon@gmail.com> | 2022-10-26 13:47:25 +0200 |
| commit | 62f83d8a8edbbb9dc783553c7183751db67a52f7 (patch) | |
| tree | c5aa6fffd7dc9ef7ffde659a69673c086af2e940 /views | |
| parent | 67b180391d1c94a82a14c7c67e47f1b99b2a9a94 (diff) | |
css and styling
Diffstat (limited to 'views')
| -rw-r--r-- | views/partials/hootstream.ejs | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/views/partials/hootstream.ejs b/views/partials/hootstream.ejs index 5d0b8e5..114cae3 100644 --- a/views/partials/hootstream.ejs +++ b/views/partials/hootstream.ejs @@ -205,18 +205,12 @@ #hootevents .fileRow div { color: rgba(192,192,192,1.0); background: transparent; - border-top: 1px solid rgba(96,96,96,0.5); padding: 0.5rem; white-space: nowrap; } - #hootevents .fileRow:last-of-type { - border-bottom: 1px solid rgba(96,96,96,0.5); - } #hootevents .fileRow { - border-left: 1px solid rgba(96,96,96,0.5); } #hootevents .fileRow { - border-right: 1px solid rgba(96,96,96,0.5); } #hootevents .fileRow div { position: relative; @@ -225,13 +219,18 @@ content: ''; width: 100%; height: 100%; - background-color: #def; opacity: 0.05; position: absolute; top: 0; left: 0; z-index: -1; } + #hootevents .fileRow:nth-child(odd) div::after { + background-color: #d8e8f8; + } + #hootevents .fileRow:nth-child(even) div::after { + background-color: #d0e0f0; + } /** Misc */ #hootevents code, #hootevents pre { |
