This repository has been archived by the owner on Jul 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add global styles and assets for new components
- Loading branch information
1 parent
137cb3a
commit 54fa305
Showing
10 changed files
with
256 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
body { | ||
background-color: $black; | ||
font-size: $base-font-size; | ||
font-family: $font-family; | ||
color: $base-color; | ||
} | ||
|
||
.container { | ||
padding: 0 60px; | ||
} | ||
|
||
strong { | ||
font-weight: bold; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,186 @@ | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
font: inherit; | ||
box-sizing: border-box; | ||
} | ||
*::before, | ||
*::after { | ||
margin: 0; | ||
padding: 0; | ||
font: inherit; | ||
box-sizing: border-box; | ||
} | ||
|
||
article, | ||
aside, | ||
details, | ||
figcaption, | ||
figure, | ||
footer, | ||
header, | ||
hgroup, | ||
main, | ||
nav, | ||
section, | ||
summary { | ||
display: block; | ||
} | ||
|
||
audio, | ||
canvas, | ||
progress, | ||
video { | ||
display: inline-block; | ||
vertical-align: baseline; | ||
} | ||
|
||
audio:not([controls]) { | ||
display: none; | ||
height: 0; | ||
} | ||
|
||
[hidden], | ||
template { | ||
display: none; | ||
} | ||
|
||
html { | ||
font-family: sans-serif; | ||
-ms-text-size-adjust: 100%; | ||
-webkit-text-size-adjust: 100%; | ||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); | ||
-webkit-focus-ring-color: rgba(255, 255, 255, 0); | ||
cursor: default; | ||
} | ||
|
||
body { | ||
font-size: 100%; | ||
line-height: 1; | ||
-moz-osx-font-smoothing: grayscale; | ||
-webkit-font-smoothing: antialiased; | ||
} | ||
|
||
a { | ||
background: transparent; | ||
} | ||
|
||
*:focus, | ||
*:active, | ||
*:hover { | ||
outline: none; | ||
} | ||
|
||
hr { | ||
box-sizing: content-box; | ||
height: 0; | ||
} | ||
|
||
ol, | ||
ul { | ||
list-style: none; | ||
} | ||
|
||
pre { | ||
tab-size: 4; | ||
white-space: pre-wrap; | ||
} | ||
|
||
q { | ||
quotes: '\201C''\201D''\2018''\2019'; | ||
} | ||
|
||
img { | ||
border: none; | ||
} | ||
|
||
svg:not(:root) { | ||
overflow: hidden; | ||
} | ||
|
||
button, | ||
input { | ||
line-height: normal; | ||
} | ||
|
||
button, | ||
select { | ||
text-transform: none; | ||
} | ||
|
||
button { | ||
overflow: visible; | ||
} | ||
|
||
button, | ||
html input[type='button'], | ||
input[type='reset'], | ||
input[type='submit'] { | ||
-webkit-appearance: button; | ||
cursor: pointer; | ||
} | ||
|
||
button[disabled], | ||
html input[disabled] { | ||
cursor: default; | ||
} | ||
|
||
input[type='checkbox'], | ||
input[type='radio'] { | ||
box-sizing: border-box; | ||
} | ||
|
||
input[type='number']::-webkit-inner-spin-button, | ||
input[type='number']::-webkit-outer-spin-button { | ||
height: auto; | ||
} | ||
|
||
input[type='search'] { | ||
-webkit-appearance: textfield; | ||
box-sizing: content-box; | ||
} | ||
|
||
input[type='search']::-webkit-search-cancel-button, | ||
input[type='search']::-webkit-search-decoration { | ||
-webkit-appearance: none; | ||
} | ||
|
||
button::-moz-focus-inner, | ||
input::-moz-focus-inner { | ||
border: none; | ||
padding: 0; | ||
} | ||
|
||
textarea { | ||
overflow: auto; | ||
vertical-align: top; | ||
} | ||
|
||
button, | ||
input, | ||
select[multiple], | ||
textarea { | ||
background-image: none; | ||
} | ||
|
||
input, | ||
select, | ||
textarea { | ||
border-radius: 0; | ||
box-shadow: none; | ||
} | ||
|
||
input, | ||
textarea { | ||
resize: none; | ||
user-select: text; | ||
} | ||
|
||
[placeholder]:focus::placeholder { | ||
color: transparent; | ||
} | ||
|
||
table { | ||
border-collapse: collapse; | ||
border-spacing: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
$black: #000; | ||
$white: #fff; | ||
$primary: #00ffad; | ||
$grey: #979797; | ||
$dark-grey: #202020; | ||
$pink: #f71ef4; | ||
$border-color: rgba($grey, 0.5); | ||
|
||
$font-family: 'Exo', sans-serif; | ||
$base-font-size: 15px; | ||
$base-color: $white; | ||
$title-font-size: 23px; | ||
$subttl-font-size: 15px; | ||
$subttl-color: $grey; | ||
$card-title-color: #c4c4c4; | ||
|
||
$input-height: 38px; | ||
$input-background: $black; | ||
$input-color: $white; | ||
$input-placeholder: rgba($white, 0.35); | ||
$input-font-size: 15px; | ||
|
||
$card-background: $dark-grey; | ||
$card-padding: 25px 25px 30px; | ||
|
||
$help-icon-color: #00a771; | ||
|
||
$alert-background: $dark-grey; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@import 'normalize'; | ||
@import 'vars'; | ||
@import 'common'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters