-
Notifications
You must be signed in to change notification settings - Fork 307
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed circliful from canvas to svg
- Loading branch information
Patric Gutersohn
committed
Feb 22, 2016
1 parent
040f5c7
commit 8d95405
Showing
26 changed files
with
6,191 additions
and
878 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
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,45 @@ | ||
/* Import the Google Font 'Lato' */ | ||
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700); | ||
|
||
/* Container styles */ | ||
body { | ||
background-color: #fff; | ||
color: #333; | ||
font-family: 'Lato', sans-serif; | ||
} | ||
|
||
.outer { | ||
fill: transparent; | ||
stroke: #333; | ||
stroke-width: 19.8; | ||
stroke-dasharray: 534; | ||
transition: stroke-dashoffset 1s; | ||
-webkit-animation-play-state: running; | ||
/* firefox bug fix - won't rotate at 90deg angles */ | ||
-moz-transform: rotate(-89deg) translateX(-190px); | ||
} | ||
|
||
/* full circle 25 empty 534 */ | ||
.inner { | ||
fill: transparent; | ||
stroke: orange; | ||
stroke-width: 20; | ||
stroke-dasharray: 534; | ||
transition: stroke-dashoffset 1s; | ||
-webkit-animation-play-state: running; | ||
/* firefox bug fix - won't rotate at 90deg angles */ | ||
-moz-transform: rotate(-89deg) translateX(-190px); | ||
stroke-dashoffset: 0; | ||
} | ||
|
||
.circliful { | ||
overflow: visible !important; | ||
|
||
} | ||
|
||
.svg-container { | ||
width: 100%; | ||
background: #fff; | ||
margin: 0 auto; | ||
overflow: visible; | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.