Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. .separator{
  2. display:flex;
  3. position:relative;
  4. justify-content:center;
  5. align-items:center;
  6. width:80px;
  7. height:80px;
  8.  
  9. }
  10.  
  11. .separator::after{
  12. content:"";
  13. position:absolute;
  14. width:200px;
  15. height:1px;
  16. background-color:black;
  17. z-index:-10;
  18. }
  19.  
  20.  
  21. .round{
  22. display:flex;
  23. position:relative;
  24. justify-content:center;
  25. align-items:center;
  26. width:70px;
  27. height:70px;
  28. background-color:white;
  29. border-radius:50%;
  30. }
  31.  
  32. .main{
  33. display:flex;
  34. position:relative;
  35. justify-content:center;
  36. align-items:center;
  37. width:50px;
  38. height:50px;
  39. border:1px solid black;
  40. background-color:white;
  41. border-radius:50%;
  42. }
  43.  
  44. .main::before{
  45. content:"";
  46. position:absolute;
  47. padding:10px;
  48. background-color:lightblue;
  49. border-radius:50%;
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement