summaryrefslogtreecommitdiff
path: root/static/styles.css
diff options
context:
space:
mode:
authorAndreas HABEGGER <andreas.habegger@bfh.ch>2023-11-18 20:15:32 +0100
committerAndreas HABEGGER <andreas.habegger@bfh.ch>2023-11-20 12:03:50 +0100
commitc06625c18e3d96e15acfb1fbe7036164ec4d5db2 (patch)
tree52319a1e4a39ceb2fae20727c75ff76fd5f9b28e /static/styles.css
parent9e66c6b8678d780f60889a8e459fd78f78b00731 (diff)
downloadwww-c06625c18e3d96e15acfb1fbe7036164ec4d5db2.tar.gz
www-c06625c18e3d96e15acfb1fbe7036164ec4d5db2.tar.bz2
www-c06625c18e3d96e15acfb1fbe7036164ec4d5db2.zip
Added divider style
Diffstat (limited to 'static/styles.css')
-rw-r--r--static/styles.css41
1 files changed, 41 insertions, 0 deletions
diff --git a/static/styles.css b/static/styles.css
index 92d7a6cd..c26490f2 100644
--- a/static/styles.css
+++ b/static/styles.css
@@ -228,3 +228,44 @@ ul.timeline > li:before {
height: 20px;
z-index: 400;
}
+
+.section-consortium .divider {
+ position: relative;
+ border-bottom: 1px solid #f0f0f0;
+ margin-bottom: 30px;
+ margin-top: 30px;
+}
+
+.section-consortium .divider:before {
+ position: absolute;
+ content: '';
+ width: 30px;
+ height: 30px;
+ border: 1px solid #f0f0f0;
+ left: 50%;
+ margin-left: -15px;
+ top: 50%;
+ background: #fff;
+ margin-top: -15px;
+ -webkit-transform: rotate(45deg);
+ -moz-transform: rotate(45deg);
+ -ms-transform: rotate(45deg);
+ transform: rotate(45deg);
+}
+
+.section-consortium .divider:after {
+ position: absolute;
+ content: '';
+ width: 20px;
+ height: 20px;
+ border: 1px solid #A5C663;
+ left: 50%;
+ margin-left: -10px;
+ top: 50%;
+ background: #A5C663;
+ margin-top: -10px;
+ -webkit-transform: rotate(45deg);
+ -moz-transform: rotate(45deg);
+ -ms-transform: rotate(45deg);
+ transform: rotate(45deg);
+} \ No newline at end of file