Merge pull request #71 from khatri2002/animated-countdown-style
Added CSS style to button
This commit is contained in:
commit
9f05b927cb
@ -19,7 +19,9 @@
|
|||||||
|
|
||||||
<div class="final">
|
<div class="final">
|
||||||
<h1>GO</h1>
|
<h1>GO</h1>
|
||||||
<button id="replay">Replay</button>
|
<button id="replay">
|
||||||
|
<span>Replay</span>
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<script src="script.js"></script>
|
<script src="script.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
@ -124,3 +124,40 @@ h4 {
|
|||||||
transform: translate(-50%, -50%) rotate(-120deg);
|
transform: translate(-50%, -50%) rotate(-120deg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#replay{
|
||||||
|
background-color: #3498db;
|
||||||
|
border-radius: 3px;
|
||||||
|
border: none;
|
||||||
|
color: aliceblue;
|
||||||
|
padding: 5px;
|
||||||
|
text-align: center;
|
||||||
|
display: inline-block;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: all 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
#replay span{
|
||||||
|
cursor: pointer;
|
||||||
|
display: inline-block;
|
||||||
|
position: relative;
|
||||||
|
transition: 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
#replay span:after{
|
||||||
|
content: '\00bb';
|
||||||
|
position: absolute;
|
||||||
|
opacity: 0;
|
||||||
|
top: 0;
|
||||||
|
right: -20px;
|
||||||
|
transition: 0.5s;
|
||||||
|
}
|
||||||
|
|
||||||
|
#replay:hover span{
|
||||||
|
padding-right: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#replay:hover span:after{
|
||||||
|
opacity: 1;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user