Fixed broken style of upload bar
This commit is contained in:
parent
936c2d0344
commit
6c18e63731
@ -22,21 +22,9 @@
|
|||||||
width: 200px;
|
width: 200px;
|
||||||
margin-left: -100px;
|
margin-left: -100px;
|
||||||
margin-top: -85px;
|
margin-top: -85px;
|
||||||
background-color: #444;
|
background-image: linear-gradient(to bottom, rgb(75, 75, 75), rgb(45, 45, 45));
|
||||||
background-image: -webkit-linear-gradient(top, rgb(75, 75, 75), rgb(45, 45, 45));
|
|
||||||
background-image: -moz-linear-gradient(top, rgb(75, 75, 75), rgb(45, 45, 45));
|
|
||||||
background-image: -ms-linear-gradient(top, rgb(75, 75, 75), rgb(45, 45, 45));
|
|
||||||
background-image: linear-gradient(top, rgb(75, 75, 75), rgb(45, 45, 45));
|
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
box-shadow: 0px 0px 5px #000, inset 0px 1px 0px rgba(255,255,255,.08), inset 1px 0px 0px rgba(255,255,255,.03), inset -1px 0px 0px rgba(255,255,255,.03);
|
box-shadow: 0px 0px 5px #000, inset 0px 1px 0px rgba(255,255,255,.08), inset 1px 0px 0px rgba(255,255,255,.03), inset -1px 0px 0px rgba(255,255,255,.03);
|
||||||
|
|
||||||
/* Animation */
|
|
||||||
-webkit-animation-name: moveUp;
|
|
||||||
-webkit-animation-duration: .3s;
|
|
||||||
-webkit-animation-timing-function: cubic-bezier(0.51,.92,.24,1.15);
|
|
||||||
-moz-animation-name: moveUp;
|
|
||||||
-moz-animation-duration: .3s;
|
|
||||||
-moz-animation-timing-function: cubic-bezier(0.51,.92,.24,1.15);
|
|
||||||
animation-name: moveUp;
|
animation-name: moveUp;
|
||||||
animation-duration: .3s;
|
animation-duration: .3s;
|
||||||
animation-timing-function: cubic-bezier(0.51,.92,.24,1.15);
|
animation-timing-function: cubic-bezier(0.51,.92,.24,1.15);
|
||||||
@ -51,15 +39,6 @@
|
|||||||
font-size: 70px;
|
font-size: 70px;
|
||||||
text-shadow: 0px 1px 2px rgba(0,0,0,.5);
|
text-shadow: 0px 1px 2px rgba(0,0,0,.5);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
-webkit-animation-name: pulse;
|
|
||||||
-webkit-animation-duration: 2s;
|
|
||||||
-webkit-animation-timing-function: ease-in-out;
|
|
||||||
-webkit-animation-iteration-count: infinite;
|
|
||||||
-moz-animation-name: pulse;
|
|
||||||
-moz-animation-duration: 2s;
|
|
||||||
-moz-animation-timing-function: ease-in-out;
|
|
||||||
-moz-animation-iteration-count: infinite;
|
|
||||||
animation-name: pulse;
|
animation-name: pulse;
|
||||||
animation-duration: 2s;
|
animation-duration: 2s;
|
||||||
animation-timing-function: ease-in-out;
|
animation-timing-function: ease-in-out;
|
||||||
@ -85,22 +64,10 @@
|
|||||||
margin: 15px;
|
margin: 15px;
|
||||||
background-size: 50px 25px;
|
background-size: 50px 25px;
|
||||||
background-repeat: repeat-x;
|
background-repeat: repeat-x;
|
||||||
background-image: -webkit-linear-gradient(left, #191919 0%, #191919 47%, #1D1D1D 53%, #1D1D1D 100%);
|
background-image: linear-gradient(to right, #191919 0%, #191919 47%, #1D1D1D 53%, #1D1D1D 100%);
|
||||||
background-image: -moz-linear-gradient(left, #191919 0%, #191919 47%, #1D1D1D 53%, #1D1D1D 100%);
|
|
||||||
background-image: linear-gradient(left right, #191919 0%, #191919 47%, #1D1D1D 53%, #1D1D1D 100%);
|
|
||||||
border: 1px solid #090909;
|
border: 1px solid #090909;
|
||||||
box-shadow: 0 1px 0 rgba(255,255,255,.06), inset 0px 0px 2px #222;
|
box-shadow: 0 1px 0 rgba(255,255,255,.06), inset 0px 0px 2px #222;
|
||||||
border-radius: 50px;
|
border-radius: 50px;
|
||||||
|
|
||||||
/* Animation */
|
|
||||||
-webkit-animation-name: moveBackground;
|
|
||||||
-webkit-animation-duration: 1s;
|
|
||||||
-webkit-animation-timing-function: linear;
|
|
||||||
-webkit-animation-iteration-count: infinite;
|
|
||||||
-moz-animation-name: moveBackground;
|
|
||||||
-moz-animation-duration: 1s;
|
|
||||||
-moz-animation-timing-function: linear;
|
|
||||||
-moz-animation-iteration-count: infinite;
|
|
||||||
animation-name: moveBackground;
|
animation-name: moveBackground;
|
||||||
animation-duration: 1s;
|
animation-duration: 1s;
|
||||||
animation-timing-function: linear;
|
animation-timing-function: linear;
|
||||||
@ -112,12 +79,7 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
box-shadow: 0 1px 0 #000, 1px 0px 2px #000;
|
box-shadow: 0 1px 0 #000, 1px 0px 2px #000;
|
||||||
background-color: #f5f2f7;
|
background-color: #f5f2f7;
|
||||||
background-image: -webkit-linear-gradient(top, #f5f2f7, #c7c6c8);
|
background-image: linear-gradient(to bottom, #f5f2f7, #c7c6c8);
|
||||||
background-image: -moz-linear-gradient(top, #f5f2f7, #c7c6c8);
|
|
||||||
background-image: -ms-linear-gradient(top, #f5f2f7, #c7c6c8);
|
|
||||||
background-image: linear-gradient(top, #f5f2f7, #c7c6c8);
|
|
||||||
border-radius: 50px;
|
border-radius: 50px;
|
||||||
-webkit-transition: width .2s, opacity .5;
|
|
||||||
-moz-transition: width .2s, opacity .5;
|
|
||||||
transition: width .2s, opacity .5;
|
transition: width .2s, opacity .5;
|
||||||
}
|
}
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user