From 11603f17ee15b88c5fc636785ce7e8325d492e9e Mon Sep 17 00:00:00 2001 From: nael Date: Mon, 3 Jun 2019 18:08:22 +0200 Subject: [PATCH] wip #2818 @1 --- public/_modules/contact-info/index.html | 78 +++++++++++++++++++++++++ public/_modules/contact-info/style.styl | 44 ++++++++++++++ 2 files changed, 122 insertions(+) create mode 100644 public/_modules/contact-info/index.html create mode 100644 public/_modules/contact-info/style.styl diff --git a/public/_modules/contact-info/index.html b/public/_modules/contact-info/index.html new file mode 100644 index 0000000..6f406b8 --- /dev/null +++ b/public/_modules/contact-info/index.html @@ -0,0 +1,78 @@ + + + + + + + + + + pmi + + + +
+ +
+ + + + \ No newline at end of file diff --git a/public/_modules/contact-info/style.styl b/public/_modules/contact-info/style.styl new file mode 100644 index 0000000..bdbac30 --- /dev/null +++ b/public/_modules/contact-info/style.styl @@ -0,0 +1,44 @@ +$h3 = 24px +$h2 = 36px +$barlow = 'Barlow', sans-serif +$muli = 'Muli', sans-serif +$dark = #6B7287 +$lightgrey = #F7F8FC +$darkblue = #152F4E +$lightblue = #0EAADA + +* + padding: 0 + box-sizing: border-box !important + margin: 0 + font-family: $muli + +#contact-info + .contact-col + padding-left 15vw + .contact-group + margin-top: 4.375rem + .contact-heading + font-size: $h2 + color $darkblue + position relative + margin-bottom: 0 + margin-top: 2.6rem + + &::after + content: '' + background: $lightblue + display block + width: 48px + height 4px + position absolute + bottom -22px + .contact-block + display flex + margin-bottom: 1.5rem + color: $darkblue + .contact-text + color: $dark + .contact-title + font-family: $barlow + color $darkblue -- 2.39.5