Skip to content

Commit

Permalink
axicon v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasJang committed Dec 3, 2014
1 parent c46b2f2 commit 3a89d35
Show file tree
Hide file tree
Showing 41 changed files with 127,815 additions and 32,536 deletions.
2,962 changes: 2,962 additions & 0 deletions axicon-v0.1/axicon.css

Large diffs are not rendered by default.

148 changes: 148 additions & 0 deletions axicon-v0.1/axicon.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
@import (less) "style.css";

.axi{
font-family: 'axicon';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
//display: inline-block;
//vertical-align: middle;
.badge {
font-size: .25em;
display: block;
position: absolute;
top: -0.75em;
right: -0.75em;
width: 2em;
height: 2em;
line-height: 2em;
border-radius: 50%;
text-align: center;
color: #fff;
background: rgba(0,0,0,0.5);
}
.badge-border {
font-size: .25em;
display: block;
position: absolute;
top: -0.75em;
right: -0.75em;
width: 2em;
height: 2em;
line-height: 2em;
border-radius: 50%;
text-align: center;
color: #fff;
background: #ffffff;
border: 1px solid #000;
}
}


/* extend css */
.axi-spin {
-webkit-animation: spin 2s infinite linear;
-moz-animation: spin 2s infinite linear;
-o-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
}

@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg);
}
100% {
-moz-transform: rotate(359deg);
}
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
}
}
@-o-keyframes spin {
0% {
-o-transform: rotate(0deg);
}
100% {
-o-transform: rotate(359deg);
}
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}


.axi-rotate-90 {
-moz-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}
.axi-rotate-180 {
-moz-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}
.axi-rotate-270 {
-moz-transform: rotate(270deg);
-webkit-transform: rotate(270deg);
-o-transform: rotate(270deg);
transform: rotate(270deg);
}

.axi-badge{
display: inline-block;
position: relative;
span {
font-size: .25em !important;
font-weight: bold !important;
display: block;
position: absolute;
top: -0.75em;
right: -0.75em;
width: 2em;
height: 2em;
line-height: 2em !important;
border-radius: 50%;
text-align: center;
color: #fff !important;
background: rgba(0,0,0,0.5);
padding: 0px !important;
}
}

.axi-badge-border {
display: inline-block;
position: relative;
span{
font-size: .25em !important;
font-weight: bold !important;
display: block;
position: absolute;
top: -0.75em;
right: -0.75em;
width: 2em;
height: 2em;
line-height: 2em !important;
border-radius: 50%;
text-align: center;
color: #000 !important;
background: rgba(255,255,255,0.5);
border: 2px solid #000;
padding: 0px !important;
}
}
5 changes: 5 additions & 0 deletions axicon-v0.1/axicon.min.css

Large diffs are not rendered by default.

Binary file added axicon-v0.1/fonts/axicon.eot
Binary file not shown.
Binary file added axicon-v0.1/fonts/axicon.otf
Binary file not shown.
945 changes: 945 additions & 0 deletions axicon-v0.1/fonts/axicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added axicon-v0.1/fonts/axicon.ttf
Binary file not shown.
Binary file added axicon-v0.1/fonts/axicon.woff
Binary file not shown.
Loading

0 comments on commit 3a89d35

Please sign in to comment.