Last active
April 25, 2020 23:19
-
-
Save kahilkubilay/90b03919e0cd4bc0f824a3a4a7eccd0b to your computer and use it in GitHub Desktop.
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Progress Bar</title> | |
<style> | |
.progressBar { | |
width: 75%; | |
height: 30px; | |
border: 2px solid #354c63; | |
margin: 50px auto; | |
border-radius: 20px; | |
overflow: hidden; | |
} | |
.progress { | |
width: 0; | |
height: 30px; | |
background-color: #41b883; | |
} | |
.stage, .status{ | |
width: 100px; | |
margin: auto; | |
font-size: 30px; | |
color: #354c63; | |
text-align: center; | |
} | |
.status{ | |
width: 350px; | |
} | |
.btn { | |
width: 150px; | |
margin: auto; | |
position: relative; | |
top: 50px; | |
border-radius: 4px; | |
background-color: #354c63; | |
border: none; | |
color: #FFFFFF; | |
text-align: center; | |
font-size: 22px; | |
padding: 10px; | |
cursor: pointer; | |
} | |
.decrase { | |
left: 40%; | |
} | |
.increase { | |
left: 45%; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="app"> | |
<div class="progressBar"> | |
<div class="progress"></div> | |
</div> | |
<div class="stage"></div> | |
<div class="status"></div> | |
<button class="btn decrase">Süreci Bitir</button> | |
<button class="btn increase">Süreci Başlat</button> | |
</div> | |
<script> | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment