-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Minh Tran
committed
Apr 10, 2016
1 parent
ce1a7a6
commit 67e7481
Showing
57 changed files
with
1,177 additions
and
920 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,4 +1,20 @@ | ||
{ | ||
"stage": 0, | ||
"optional": [] | ||
} | ||
"optional": [], | ||
"env": { | ||
"development": { | ||
"plugins": ["react-transform"], | ||
"extra": { | ||
"react-transform": { | ||
"transforms": [ | ||
{ | ||
"transform": "react-transform-hmr", | ||
"imports": ["react"], | ||
"locals": ["module"] | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"directory": "example/app/bower_components" | ||
"directory": "bower_components" | ||
} |
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* Pre Render | ||
========================================================================== */ | ||
@keyframes spinner { | ||
0% { | ||
transform: rotate(0deg); | ||
} | ||
100% { | ||
transform: rotate(360deg); | ||
} | ||
} | ||
|
||
.pre-render { | ||
background: rgba(255, 255, 255, .7); | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
z-index: 99999; | ||
.spinner { | ||
width: 48px; | ||
height: 48px; | ||
border: 1px solid lighten($primary, 40%); | ||
border-left-color: darken($primary, 10%); | ||
border-radius: 50%; | ||
animation: spinner 700ms infinite linear; | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
margin-left: -24px; | ||
margin-top: -24px; | ||
} | ||
} | ||
|
||
/* Thumbnail | ||
========================================================================== */ | ||
.pswp-thumbnail { | ||
display: inline-block; | ||
width: 120px; | ||
height: 90px; | ||
margin: 0 10px 10px 0; | ||
cursor: pointer; | ||
img { | ||
max-width: 100%; | ||
} | ||
} |
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,10 @@ | ||
@mixin clearfix() { | ||
&:before, | ||
&:after { | ||
content: " "; | ||
display: table; | ||
} | ||
&:after { | ||
clear: both; | ||
} | ||
} |
Empty file.
Oops, something went wrong.