diff options
author | luxagraf <sng@luxagraf.net> | 2016-11-04 11:58:12 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-11-04 11:58:12 -0400 |
commit | 090e60b6d8a435fe5bf2df6574f692e69830dbc0 (patch) | |
tree | 06444cfc0b87bf5b2d75470a83e01da73d74fbc8 /design/sass/_house.scss | |
parent | 6df481fbf7e119a74ce27f725590d0845c32d03c (diff) |
fixed some issues with projects page and archived photo galleries
Diffstat (limited to 'design/sass/_house.scss')
-rw-r--r-- | design/sass/_house.scss | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/design/sass/_house.scss b/design/sass/_house.scss new file mode 100644 index 0000000..b3afcc0 --- /dev/null +++ b/design/sass/_house.scss @@ -0,0 +1,89 @@ +$blue: #39deea; + +.house .map img { background: none !important;} +.house .map { float: left;} +.house main { @include constrain_wide;} +.house .picwide { + background: none; + max-width: 100%; + margin: 0; + @include breakpoint(epsilon){ + width: 1280px; + } +} +.flist { + @extend %clearfix; + @include constrain(900px); + @include fancy_sans; + @include fontsize(18); + margin-top: 4em; + text-align: left; + list-style-position: inside; + color: #393939; + li { + margin: 1.5em 0; + min-height: 140px; + + } + li:first-of-type { margin-top: 0 ;} + + h3 { + @include fontsize(24); + max-width: 100%; + font-weight: 400; + margin: .25em 0 0 0; + padding-top: .15em; + } + .inner{ + display: inline-block; + width: 22px; + height: 22px; + border-radius: 30em; + position: absolute; + top: 19px; + left: 19px; + background: white url("/media/img/check.png") 50% 50% no-repeat; + background-size: 15px; + } + .outer { + display: inline-block; + float: left; + width: 60px; + height: 60px; + margin: 10px 40px 90px 0; + background: $blue; + border-radius: 30em; + position: relative; + } +} +.fsubhed { + @extend %clearfix; + @include constrain(1140px); + margin-top: 6em; + h2 { + margin-top: 0; + float: left; + position: relative; + font-weight: 400; + @include fontsize(32); + //&:after { + // content: ""; + // position: absolute; + // top: 50%; + // height: 2px; + // width: 200px; + // display: block; + // margin-top: -3px; + // margin-left: 3em; + // background-color: #e5e5e5; + //} + } + p { + @include constrain(800px); + float: right; + } + a, a:visited, a:hover { + color: $blue; + } + +} |