Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. .old-tv-screen {
  2. -webkit-box-sizing: content-box;
  3. -moz-box-sizing: content-box;
  4. box-sizing: content-box;
  5. width: 200px;
  6. height: 150px;
  7. position: relative;
  8. margin: 0;
  9. border: none;
  10. -webkit-border-radius: 50% / 10%;
  11. border-radius: 50% / 10%;
  12. font: normal 100%/normal Arial, Helvetica, sans-serif;
  13. color: white;
  14. text-align: center;
  15. text-indent: 0.1em;
  16. -o-text-overflow: clip;
  17. text-overflow: clip;
  18. background: #fff;
  19. border-top: 3px solid #CDCDCD;
  20. border-bottom: 3px solid #CDCDCD;
  21. }
  22.  
  23. .old-tv-screen::before {
  24. -webkit-box-sizing: content-box;
  25. -moz-box-sizing: content-box;
  26. box-sizing: content-box;
  27. position: absolute;
  28. content: "";
  29. top: 10%;
  30. right: -5%;
  31. bottom: 10%;
  32. left: -5%;
  33. border-left: 3px solid #CDCDCD;
  34. border-right: 3px solid #CDCDCD;
  35. -webkit-border-radius: 5% / 50%;
  36. border-radius: 5% / 50%;
  37. font: normal 100%/normal Arial, Helvetica, sans-serif;
  38. color: rgba(0,0,0,1);
  39. -o-text-overflow: clip;
  40. text-overflow: clip;
  41. background: #fff;
  42. text-shadow: none;
  43.  
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement