-
Notifications
You must be signed in to change notification settings - Fork 573
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #153 from insites/ipImprovements
Ability to customize locationServices. Tweaks.
- Loading branch information
Showing
19 changed files
with
879 additions
and
692 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
|
||
.cc-window { | ||
color: black; | ||
} | ||
|
||
.cc-message { | ||
width: auto; | ||
background: white; | ||
padding: 20px 76px 20px 16px; | ||
border-radius: 10px; | ||
margin-right: -70px; | ||
margin-left: 20%; | ||
} | ||
|
||
.cc-link, .cc-link:visited { | ||
color: red; | ||
} | ||
|
||
.cc-btn { | ||
background: #0000ff; | ||
background: -moz-radial-gradient(center, ellipse cover, #0000ff 0%, #99007c 100%); | ||
background: -webkit-radial-gradient(center, ellipse cover, #0000ff 0%,#99007c 100%); | ||
background: radial-gradient(ellipse at center, #0000ff 0%,#99007c 100%); | ||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0000ff', endColorstr='#99007c',GradientType=1 ); | ||
padding: 58px 0; | ||
color: red; | ||
border: 4px dotted red; | ||
border-radius: 100px; | ||
-webkit-animation:spin 4s linear infinite; | ||
-moz-animation:spin 4s linear infinite; | ||
animation:spin 4s linear infinite; | ||
} | ||
|
||
.cc-btn:hover { | ||
background: #99007c; | ||
-webkit-animation: none; | ||
-moz-animation:none; | ||
animation:none; | ||
} | ||
|
||
@-moz-keyframes spin { | ||
100% { | ||
-moz-transform: rotate(360deg); | ||
} | ||
} | ||
|
||
@-webkit-keyframes spin { | ||
100% { | ||
-webkit-transform: rotate(360deg); | ||
} | ||
} | ||
|
||
@keyframes spin { | ||
100% { | ||
-webkit-transform: rotate(360deg); | ||
transform:rotate(360deg); | ||
} | ||
} |
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
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
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
Oops, something went wrong.