Skip to content

Commit

Permalink
dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
mrzepinski committed Oct 4, 2014
1 parent f18ee19 commit b28b4de
Show file tree
Hide file tree
Showing 8 changed files with 475 additions and 0 deletions.
117 changes: 117 additions & 0 deletions dist/css/angular-debug-bar.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
@font-face {
font-family: "debugbar";
src: url("../font/debugbar.eot?11439546");
src: url("../font/debugbar.eot?11439546#iefix") format("embedded-opentype"), url("../font/debugbar.woff?11439546") format("woff"), url("../font/debugbar.ttf?11439546") format("truetype"), url("../font/debugbar.svg?11439546#debugbar") format("svg");
font-weight: normal;
font-style: normal; }

[class^="icon-"]:before, [class*=" icon-"]:before {
font-family: "debugbar";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: 0.2em;
text-align: center;
/* opacity: .8; */
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* fix buttons height, for twitter bootstrap */
line-height: 1em;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
margin-left: 0.2em;
/* you can be more comfortable with increased icons size */
/* font-size: 120%; */ }

.icon-cog:before {
content: "\e800"; }

.icon-headphones:before {
content: "\e801"; }

.icon-home:before {
content: "\e802"; }

.icon-eye:before {
content: "\e803"; }

#angular-debug-bar {
z-index: 9999;
position: fixed;
width: 100%;
left: 0;
bottom: -200px;
height: 200px;
color: #555;
font-size: 16px;
background: #fafafa;
border-top: 1px solid #ECECEC;
-webkit-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.2);
-moz-box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.2);
box-shadow: 0px 1px 5px 0px rgba(50, 50, 50, 0.2); }
#angular-debug-bar, #angular-debug-bar * {
-webkit-transition: all 300ms ease-in;
-moz-transition: all 300ms ease-in;
-o-transition: all 300ms ease-in;
transition: all 300ms ease-in;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
#angular-debug-bar:before, #angular-debug-bar:after, #angular-debug-bar *:before, #angular-debug-bar *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
#angular-debug-bar.show {
bottom: 0; }
#angular-debug-bar.show button, #angular-debug-bar.show button:hover {
top: -21px; }
#angular-debug-bar.show ul {
overflow: auto;
max-height: 200px; }
#angular-debug-bar button {
cursor: pointer;
position: absolute;
left: 5px;
top: -13px;
text-align: center;
padding: 3px;
border: none;
outline: 0;
background: #03A9F4;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px; }
#angular-debug-bar button:hover {
top: -21px; }
#angular-debug-bar ul {
list-style: none;
padding: 0;
margin: 20px auto 0;
display: block;
width: 90%; }
#angular-debug-bar ul li {
padding: 15px;
width: 20%;
height: 100px;
float: left;
text-align: center; }
#angular-debug-bar ul li .value-wrapper [class^="icon-"]:before, #angular-debug-bar ul li .value-wrapper [class*=" icon-"]:before {
font-size: 150%; }
#angular-debug-bar ul li .value-wrapper .value {
font-size: 1.8em;
font-weight: bold;
border-bottom: 1px dotted; }
#angular-debug-bar ul li .value-wrapper .unit {
font-size: 1.2em;
margin-left: 3px; }
#angular-debug-bar ul li .label {
font-size: 1em;
margin-top: 5px;
color: #9E9E9E; }
1 change: 1 addition & 0 deletions dist/css/angular-debug-bar.min.css

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

Binary file added dist/font/debugbar.eot
Binary file not shown.
15 changes: 15 additions & 0 deletions dist/font/debugbar.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dist/font/debugbar.ttf
Binary file not shown.
Binary file added dist/font/debugbar.woff
Binary file not shown.

0 comments on commit b28b4de

Please sign in to comment.