Skip to content

Commit 21c50d2

Browse files
committed
250 adding the dist folder to repo
1 parent c12530a commit 21c50d2

20 files changed

+638
-639
lines changed

.gitignore

+14-41
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,16 @@
1-
$RECYCLE.BIN/
2-
*.cab
3-
*.lnk
4-
*.log
5-
*.msi
6-
*.msm
7-
*.msp
8-
*.pid
9-
*.seed
10-
*~
11-
.AppleDB
12-
.AppleDesktop
13-
.AppleDouble
14-
.DS_Store
15-
.DocumentRevisions-V100
16-
.LSOverride
17-
.Spotlight-V100
18-
.TemporaryItems
19-
.Trash-*
20-
.Trashes
21-
.VolumeIcon.icns
22-
._*
23-
.apdisk
24-
.directory
25-
.fseventsd
26-
.lock-wscript
27-
.node_repl_history
28-
.npm
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
bower_components
5+
node_modules
6+
7+
# testing
298
.nyc_output
30-
Desktop.ini
31-
Icon
32-
Network Trash Folder
33-
Temporary Items
34-
Thumbs.db
35-
build/Release
369
coverage
37-
dist
38-
ehthumbs.db
39-
lib-cov
40-
logs
41-
node_modules
42-
npm-debug.log*
43-
pids
10+
11+
# production
12+
# build
13+
# dist
14+
15+
# debug
16+
*.log

.prettierignore

+16-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1-
dist
2-
test
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
bower_components
5+
node_modules
6+
7+
# testing
38
.nyc_output
9+
coverage
10+
test
11+
12+
# production
13+
# build
14+
# dist
15+
16+
# debug
17+
*.log

dist/_Base.sass

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
// Base
3+
// ––––––––––––––––––––––––––––––––––––––––––––––––––
4+
5+
// Set box-sizing globally to handle padding and border widths
6+
*,
7+
*:after,
8+
*:before
9+
box-sizing: inherit
10+
11+
// The base font-size is set at 62.5% for having the convenience
12+
// of sizing rems in a way that is similar to using px: 1.6rem = 16px
13+
html
14+
box-sizing: border-box
15+
font-size: 62.5%
16+
17+
// Default body styles
18+
body
19+
color: $color-secondary
20+
font-family: 'Roboto', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif
21+
font-size: 1.6em // Currently ems cause chrome bug misinterpreting rems on body element
22+
font-weight: 300
23+
letter-spacing: .01em
24+
line-height: 1.6

dist/_Blockquote.sass

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
// Blockquote
3+
// ––––––––––––––––––––––––––––––––––––––––––––––––––
4+
5+
blockquote
6+
border-left: .3rem solid $color-quaternary
7+
margin-left: 0
8+
margin-right: 0
9+
padding: 1rem 1.5rem
10+
11+
*:last-child
12+
margin-bottom: 0

dist/_Button.sass

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
2+
// Button
3+
// ––––––––––––––––––––––––––––––––––––––––––––––––––
4+
5+
.button,
6+
button,
7+
input[type='button'],
8+
input[type='reset'],
9+
input[type='submit']
10+
background-color: $color-primary
11+
border: .1rem solid $color-primary
12+
border-radius: .4rem
13+
color: $color-initial
14+
cursor: pointer
15+
display: inline-block
16+
font-size: 1.1rem
17+
font-weight: 700
18+
height: 3.8rem
19+
letter-spacing: .1rem
20+
line-height: 3.8rem
21+
padding: 0 3.0rem
22+
text-align: center
23+
text-decoration: none
24+
text-transform: uppercase
25+
white-space: nowrap
26+
27+
&:focus,
28+
&:hover
29+
background-color: $color-secondary
30+
border-color: $color-secondary
31+
color: $color-initial
32+
outline: 0
33+
34+
&[disabled]
35+
cursor: default
36+
opacity: .5
37+
38+
&:focus,
39+
&:hover
40+
background-color: $color-primary
41+
border-color: $color-primary
42+
43+
&.button-outline
44+
background-color: transparent
45+
color: $color-primary
46+
47+
&:focus,
48+
&:hover
49+
background-color: transparent
50+
border-color: $color-secondary
51+
color: $color-secondary
52+
53+
&[disabled]
54+
55+
&:focus,
56+
&:hover
57+
border-color: inherit
58+
color: $color-primary
59+
60+
&.button-clear
61+
background-color: transparent
62+
border-color: transparent
63+
color: $color-primary
64+
65+
&:focus,
66+
&:hover
67+
background-color: transparent
68+
border-color: transparent
69+
color: $color-secondary
70+
71+
&[disabled]
72+
73+
&:focus,
74+
&:hover
75+
color: $color-primary

dist/_Code.sass

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
// Code
3+
// ––––––––––––––––––––––––––––––––––––––––––––––––––
4+
5+
code
6+
background: $color-tertiary
7+
border-radius: .4rem
8+
font-size: 86%
9+
margin: 0 .2rem
10+
padding: .2rem .5rem
11+
white-space: nowrap
12+
13+
pre
14+
background: $color-tertiary
15+
border-left: .3rem solid $color-primary
16+
overflow-y: hidden
17+
18+
& > code
19+
border-radius: 0
20+
display: block
21+
padding: 1rem 1.5rem
22+
white-space: pre

dist/_Color.sass

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
// Color
3+
// ––––––––––––––––––––––––––––––––––––––––––––––––––
4+
5+
$color-initial: #fff !default
6+
$color-primary: #9b4dca !default
7+
$color-secondary: #606c76 !default
8+
$color-tertiary: #f4f5f6 !default
9+
$color-quaternary: #d1d1d1 !default
10+
$color-quinary: #e1e1e1 !default

dist/_Divider.sass

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
// Divider
3+
// ––––––––––––––––––––––––––––––––––––––––––––––––––
4+
5+
hr
6+
border: 0
7+
border-top: .1rem solid $color-tertiary
8+
margin: 3.0rem 0

dist/_Form.sass

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
2+
// Form
3+
// ––––––––––––––––––––––––––––––––––––––––––––––––––
4+
5+
input[type='color'],
6+
input[type='date'],
7+
input[type='datetime'],
8+
input[type='datetime-local'],
9+
input[type='email'],
10+
input[type='month'],
11+
input[type='number'],
12+
input[type='password'],
13+
input[type='search'],
14+
input[type='tel'],
15+
input[type='text'],
16+
input[type='url'],
17+
input[type='week'],
18+
input:not([type]),
19+
textarea,
20+
select
21+
-webkit-appearance: none // sass-lint:disable-line no-vendor-prefixes
22+
background-color: transparent
23+
border: .1rem solid $color-quaternary
24+
border-radius: .4rem
25+
box-shadow: none
26+
box-sizing: inherit // Forced to replace inherit values of the normalize.css
27+
height: 3.8rem
28+
padding: .6rem 1.0rem .7rem // This vertically centers text on FF, ignored by Webkit
29+
width: 100%
30+
31+
&:focus
32+
border-color: $color-primary
33+
outline: 0
34+
35+
select
36+
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 8" width="30"><path fill="%23' + str-slice(inspect($color-quaternary), 2) + '" d="M0,0l6,8l6-8"/></svg>') center right no-repeat
37+
padding-right: 3.0rem
38+
39+
&:focus
40+
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 8" width="30"><path fill="%23' + str-slice(inspect($color-primary), 2) + '" d="M0,0l6,8l6-8"/></svg>')
41+
42+
&[multiple]
43+
background: none
44+
height: auto
45+
46+
textarea
47+
min-height: 6.5rem
48+
49+
label,
50+
legend
51+
display: block
52+
font-size: 1.6rem
53+
font-weight: 700
54+
margin-bottom: .5rem
55+
56+
fieldset
57+
border-width: 0
58+
padding: 0
59+
60+
input[type='checkbox'],
61+
input[type='radio']
62+
display: inline
63+
64+
.label-inline
65+
display: inline-block
66+
font-weight: normal
67+
margin-left: .5rem

0 commit comments

Comments
 (0)