Skip to content

Commit

Permalink
A bit more compatible with other browsers
Browse files Browse the repository at this point in the history
  • Loading branch information
Dremora committed Jun 20, 2013
1 parent ccf7c27 commit 6ee3f23
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions barcode.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ body {
left: 50%;
margin-left: -250px;
margin-top: -89px;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
transition: all 0.3s linear;
min-height: calc(50% + 89px);
Expand All @@ -44,8 +43,8 @@ h1 {
color: rgba(0, 0, 0, 0);
text-transform: lowercase;
font-variant: small-caps;
background: -webkit-repeating-linear-gradient(
180deg,
background: repeating-linear-gradient(
270deg,
black 0px,
black 3px,
rgba(0, 0, 0, 0) 3px,
Expand All @@ -65,8 +64,11 @@ h1 {
);
background-repeat: repeat;
-webkit-text-stroke: 1px #333;
-moz-text-stroke: 1px #333;
text-stroke: 1px #333;
-webkit-background-clip: text;
-webkit-transition: all 0.3s linear;
-moz-background-clip: text;
background-clip: text;
-moz-transition: all 0.3s linear;
transition: all 0.3s linear;
}
Expand Down Expand Up @@ -105,9 +107,7 @@ h1 {
padding: 3px 8px;
border-radius: 5px;
font-family: Georgia;
-webkit-box-shadow: 0 0 20px -5px #343434;
box-shadow: 0 0 20px -5px #343434;
-webkit-transition: background 0.3s linear;
-moz-transition: background 0.3s linear;
transition: background 0.3s linear;
margin: 5px;
Expand Down Expand Up @@ -171,7 +171,6 @@ input[type=number]::-webkit-outer-spin-button {
}

.preload * {
-webkit-transition: none !important;
-moz-transition: none !important;
transition: none !important;
}

0 comments on commit 6ee3f23

Please sign in to comment.