diff options
Diffstat (limited to 'design')
-rw-r--r-- | design/sass/_details.scss | 35 |
1 files changed, 31 insertions, 4 deletions
diff --git a/design/sass/_details.scss b/design/sass/_details.scss index 5f5ebdc..83651ca 100644 --- a/design/sass/_details.scss +++ b/design/sass/_details.scss @@ -213,14 +213,41 @@ h4.post-source { padding-left: 3px; } //### GUIDE STUFF ### +.product-card { + margin: 5rem 0; +} .detail .product-link { - margin: 2rem 0 1rem 0; - letter-spacing: -0.02rem; + a { + display: block; + padding: 1rem; + background: #249bd6; + color: white; + text-transform: uppercase; + font-size: 16px; + text-decoration: none; + } +} +.buy-btn-wrapper { + margin-top: 4rem; + display: flex; + justify-content: center; + align-items: center; + align-content: space-between; + h4 { + margin: 0 1.5rem 0 0; + line-height: normal; + &:after { + content: ":"; + } + } + h5 { + margin-right: 1rem; + } } .detail .post-guide { h3 { - @include fontsize(24); - margin: 4rem 0 .25rem 0; + @include fontsize(27); + margin: 4rem 0 .5rem 0; & + p { margin-top: 0; } |