Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. </head>
  6. <style type="text/css">
  7. progress.social-progress {
  8. text-align: center;
  9. height: 1.5em;
  10. width: 100%;
  11. -webkit-appearance: none;
  12. border: none;
  13. position:relative;
  14. }
  15. progress.social-progress:before {
  16. content: attr(data-label);
  17. font-size: 0.8em;
  18. vertical-align: 0;
  19. position:absolute;
  20. left:0;
  21. right:0;
  22. top: 5px;
  23. }
  24. progress.social-progress::-webkit-progress-bar {
  25. background-color: #c9c9c9;
  26. }
  27. progress.social-progress::-webkit-progress-value {
  28. background-color: green;
  29. }
  30. progress.social-progress::-moz-progress-bar {
  31. background-color: green;
  32. }
  33. </style>
  34. <body>
  35.  
  36. <progress class="social-progress" max="100" value="50" data-label="1450/2000 kcal"></progress>
  37.  
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement