4 Commits

Author SHA1 Message Date
Bartłomiej Pluta
39532aacf7 Enable RWD in news section 2018-04-16 14:44:05 +02:00
Bartłomiej Przemysław Pluta
abb149b383 Merge pull request #15 from bartlomiej-pluta/rwd-newsletter
Enable RWD in Newsletter section
2018-04-16 14:35:53 +02:00
Bartłomiej Pluta
325a0b5e3e Enable RWD in Newsletter section 2018-04-16 14:34:53 +02:00
Bartłomiej Przemysław Pluta
494bf4d2c3 Merge pull request #14 from bartlomiej-pluta/rwd-pricing
Enable RWD on pricing section
2018-04-16 14:21:35 +02:00
4 changed files with 27 additions and 8 deletions

View File

@@ -396,10 +396,10 @@
<div class="newsletter"> <div class="newsletter">
<div class="container"> <div class="container">
<div class="row justify-content-between"> <div class="row justify-content-between">
<div class="col-6 newsletter__title"> <div class="col-12 col-xl-6 newsletter__title">
Subscribe to our newsletter Subscribe to our newsletter
</div> </div>
<div class="col-6 oneline__form"> <div class="col-12 col-xl-6 oneline__form">
<input class="textfield oneline__form__component--growing" title="Email" placeholder="Email..."> <input class="textfield oneline__form__component--growing" title="Email" placeholder="Email...">
<button class="rounded-button rounded-button--uppercase oneline__form__component--fixed" <button class="rounded-button rounded-button--uppercase oneline__form__component--fixed"
type="submit">Subscribe type="submit">Subscribe
@@ -411,7 +411,7 @@
<div class="news"> <div class="news">
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<div class="col-4"> <div class="news__news col-12 col-sm-4">
<p class="news__title"> <p class="news__title">
New in Release 2.8 New in Release 2.8
</p> </p>
@@ -435,7 +435,7 @@
</div> </div>
<button class="rect-button rect-button--small">Go to Release Log</button> <button class="rect-button rect-button--small">Go to Release Log</button>
</div> </div>
<div class="col-4"> <div class="news__extensions col-12 col-sm-4">
<p class="news__title"> <p class="news__title">
Popular Extensions Popular Extensions
</p> </p>
@@ -466,7 +466,7 @@
</div> </div>
<button class="rect-button rect-button--small">Go to Marketplace</button> <button class="rect-button rect-button--small">Go to Marketplace</button>
</div> </div>
<div class="col-4"> <div class="news__blog col-12 col-sm-4">
<p class="news__title"> <p class="news__title">
New From the Blog New From the Blog
</p> </p>

View File

@@ -5,6 +5,7 @@
background-color: white; background-color: white;
color: $regular-text; color: $regular-text;
&::placeholder { &::placeholder {
font-family: Montserrat, sans-serif; font-family: Montserrat, sans-serif;
font-size: 14px; font-size: 14px;
@@ -21,9 +22,11 @@
.oneline__form__component--growing { .oneline__form__component--growing {
width: 100%; width: 100%;
margin: 0 20px; min-width: 100px;
margin: 0 10px;
} }
.oneline__form__component--fixed { .oneline__form__component--fixed {
white-space: nowrap; white-space: nowrap;
margin: 0 10px;
} }

View File

@@ -42,3 +42,16 @@
color: $regular-text; color: $regular-text;
font-weight: 500; font-weight: 500;
} }
@media all and (max-width: $phone) {
.news__news,
.news__extensions,
.news__blog {
padding: 0 30px;
}
.news__extensions,
.news__blog {
margin-top: 50px;
}
}

View File

@@ -4,12 +4,15 @@
} }
.newsletter__title { .newsletter__title {
display: flex;
align-items: center;
font-family: Montserrat, sans-serif; font-family: Montserrat, sans-serif;
font-weight: bold; font-weight: bold;
font-size: 30px; font-size: 30px;
color: $primary-dark; color: $primary-dark;
text-transform: capitalize; text-transform: capitalize;
text-align: center;
@media all and (max-width: $desktop-xl) {
margin-bottom: 50px;
}
} }