diff options
-rw-r--r-- | assets/css/_schedule.less | 5 | ||||
-rw-r--r-- | configs/conferences/35c3/main.less | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/assets/css/_schedule.less b/assets/css/_schedule.less index ad50553..67f723d 100644 --- a/assets/css/_schedule.less +++ b/assets/css/_schedule.less @@ -109,6 +109,11 @@ body .schedule { background-color: @schedule-pause-bg; background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-size: 100px; + + /* and now for small screens: */ + @media (max-width: @screen-xs-max) { + background-size: 72px; + } } } diff --git a/configs/conferences/35c3/main.less b/configs/conferences/35c3/main.less index 7ecc575..8bbbd6c 100644 --- a/configs/conferences/35c3/main.less +++ b/configs/conferences/35c3/main.less @@ -385,7 +385,6 @@ body .schedule { &.pause, &.optout { background-color: @color-grey-lightest; background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); - background-size: 100px; h3 { color: @color-grey-lighter; |