From 9f293656e71d64a6fc59922e247d50cefe02dabf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sat, 17 Nov 2018 09:55:54 +0100 Subject: [PATCH] add basic styles for page content cells --- gadjo/static/css/gadjo.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/gadjo/static/css/gadjo.scss b/gadjo/static/css/gadjo.scss index 3d9343a..6bcf778 100644 --- a/gadjo/static/css/gadjo.scss +++ b/gadjo/static/css/gadjo.scss @@ -1272,3 +1272,16 @@ div#side { // w.c.s. steps in backoffice submission } } } + +div#portal-agent-content { + div.cell { + &.highlight { + background: linear-gradient(to right, $primary-color 0%, $secondary-color 130vh); + background: linear-gradient(to right, var(--primary-color) 0%, var(--secondary-color) 130vh); + color: white; + h2 { + color: white; + } + } + } +}