diff options
author | James Taylor <user234683@users.noreply.github.com> | 2018-07-06 17:56:57 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2018-07-06 17:56:57 -0700 |
commit | 2cf83d6e2a083969aff8ededfcad555ca9bf8e71 (patch) | |
tree | 797a7ea1550b256e79eecf5310a1f7eaec73a844 /youtube | |
parent | 20d9f07cb7ecef18aa919d48a0906d3ac7642b39 (diff) | |
download | yt-local-2cf83d6e2a083969aff8ededfcad555ca9bf8e71.tar.lz yt-local-2cf83d6e2a083969aff8ededfcad555ca9bf8e71.tar.xz yt-local-2cf83d6e2a083969aff8ededfcad555ca9bf8e71.zip |
make grid-items and list-items usable elsewhere
Diffstat (limited to 'youtube')
-rw-r--r-- | youtube/shared.css | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/youtube/shared.css b/youtube/shared.css index 432a1a1..240fd5c 100644 --- a/youtube/shared.css +++ b/youtube/shared.css @@ -57,6 +57,35 @@ address{ border-width:1px; } +.item-list{ + display: grid; + grid-auto-rows: 138px; + grid-row-gap: 10px; + +} + .item-list .video-thumbnail-box{ + width:246px; + } + .item-list .playlist-thumbnail-box{ + width:246px; + } + + +.item-grid{ + display:grid; + grid-template-columns: repeat(auto-fill, 400px); + grid-auto-rows: 94px; + grid-row-gap: 10px; +} + .item-grid .video-thumbnail-box{ + width:168px; + } + .item-grid .playlist-thumbnail-box{ + width:168px; + } + + + .full-item{ display: grid; |