Skip to content

Commit

Permalink
feat(setup dist): setup initial dist folder
Browse files Browse the repository at this point in the history
  • Loading branch information
BioPhoton committed Nov 27, 2016
1 parent 86e70ed commit 8f25a1d
Show file tree
Hide file tree
Showing 6 changed files with 1,193 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/css/star-rating.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 48 additions & 0 deletions dist/scss/_elements.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
@charset "UTF-8";


/*CSS Star Rating Elements
====================================================*/


/*
Star element
==================================================================*/
.star {
position: relative;

svg, i, img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;

display: block;
font-style: normal;

&.star-half,
&.star-filled {
opacity: 0;
}
}
}

/*
Star Container
==================================================================*/
.star-container {
display: flex;
align-items: center;
flex: 0 0 auto;

svg {
z-index: 3;
}
i {
z-index: 2;
}
img {
z-index: 1;
}
}
Loading

0 comments on commit 8f25a1d

Please sign in to comment.