Guest User

Untitled

a guest
Oct 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <h2>Lorem ipsum dolor sit</h2>
  2.  
  3. h2 {
  4. text-align: center;
  5. position: relative;
  6. text-transform: uppercase;
  7. overflow: hidden;
  8. }
  9.  
  10. h2::before {
  11. content: "";
  12. width: 170px;
  13. height: 2px;
  14. background: #fff;
  15. position: absolute;
  16. top: 50%;
  17. margin-left: -200px;
  18. }
  19.  
  20. h2::after {
  21. content: "";
  22. width: 170px;
  23. height: 2px;
  24. background: #fff;
  25. position: absolute;
  26. top: 50%;
  27. margin-left: 30px;
  28. }
  29.  
  30. @media screen and (max-width: 700px) {
  31.  
  32. h2 {
  33. overflow: visible;
  34. }
  35.  
  36. h2::before {
  37. width: 350px;
  38. top: -8px;
  39. left: 50%;
  40. margin-left: -175px;
  41. }
  42.  
  43. h2::after {
  44. width: 350px;
  45. bottom: -8px;
  46. left: 50%;
  47. margin-left: -175px;
  48. }
  49. }
Add Comment
Please, Sign In to add comment