12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- @import "colors";
- @import "breakpoints";
- main {
- h2 {
- color: $musare_color_primary_gray;
- text-align: center;
- }
- }
- @include responsive(smallest) {
- h2 {
- font-size: 20px;
- line-height: 27px;
- margin-bottom: 12px;
- }
- .general-section {
- button:last-child {
- margin-bottom: 0;
- }
- }
- .security-section {
- margin-top: 16px;
- }
- }
- @include responsive(small) {
- h2 {
- font-size: 35px;
- line-height: 47px;
- margin-bottom: 26px;
- }
- .general-section {
- button:last-child {
- margin-bottom: 0;
- }
- }
- .security-section {
- margin-top: 34px;
- }
- }
- @include responsive(medium) {
- h2 {
- font-size: 52px;
- line-height: 69px;
- margin-bottom: 39px;
- }
- .general-section {
- button:last-child {
- margin-bottom: 0;
- }
- }
- .security-section {
- margin-top: 51px;
- }
- }
- @include responsive(large) {
- main {
- width: 100%;
- }
- h2 {
- font-size: 28px;
- line-height: 37px;
- margin-bottom: 32px;
- }
- .sections {
- display: flex;
- width: 100%;
- .section {
- width: 50%;
- margin-right: 50px;
- margin-left: 50px;
- margin-top: 0;
- // TODO Remove after ranges have been introduced
- }
- }
- }
|