This commit is contained in:
2019-03-22 18:50:33 +03:00
parent 9b48faf931
commit 63d54fe72c
49 changed files with 4888 additions and 1525 deletions

View File

@@ -0,0 +1,2 @@
@import './typography'
@import './sections'

View File

@@ -0,0 +1 @@
@import './mixins/center'

View File

@@ -0,0 +1,4 @@
=center
display: flex
justify-content: center
align-items: center

View File

@@ -0,0 +1,15 @@
@import './variables'
@import './mixins'
section
+center
width: 100%
padding: 4rem 0
&:not(:first-child)
border-top: $border
.wrapper
width: calc(100% - 4rem)
max-width: 768px

View File

@@ -0,0 +1,9 @@
@import url('https://fonts.googleapis.com/css?family=Nunito:400,700')
body
font-size: 1.2rem
font-family: Nunito, sans-serif
a
font-weight: bold
text-decoration: none

View File

@@ -0,0 +1,3 @@
$color-main: #c03a2b
$color-alternative: #e57e25
$border: 1px solid rgba(0, 0, 0, 0.05)