Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. .helper-object {
  2. position:fixed;
  3. padding: 5px;
  4. display : flex;
  5. flex-direction: row;
  6. border-radius: 5px;
  7. background: #fff;
  8. border: 1px solid #fff;
  9. box-shadow: 0px 5px 15px 5px #888888;
  10. }
  11.  
  12. .helper-object.BOTTOM, .helper-object.TOP {
  13. transform: translateX(-50%);
  14. }
  15.  
  16. .helper-object.LEFT {
  17. transform: translate( -100%, -50%);
  18. }
  19.  
  20. .helper-object.RIGHT {
  21. transform: translate(100%, -50%);
  22. }
  23.  
  24. .helper-object:after {
  25. content: '';
  26. position: absolute;
  27. width: 0;
  28. height: 0;
  29. border: 10px solid transparent;
  30. }
  31.  
  32. .helper-object.BOTTOM:after{
  33. left: 50%;
  34. top: 0;
  35. border-bottom-color: #fff;
  36. border-top: 0;
  37. margin-left: -10px;
  38. margin-top: -10px;
  39. }
  40.  
  41. .helper-object.TOP:after {
  42. bottom: 0;
  43. left: 50%;
  44. border-top-color: #fff;
  45. border-bottom: 0;
  46. margin-left: -10px;
  47. margin-bottom: -10px;
  48. }
  49.  
  50. .helper-object.LEFT:after {
  51. right: 0;
  52. top: 50%;
  53. border-left-color: #fff;
  54. border-right: 0;
  55. margin-top: -10px;
  56. margin-right: -10px;
  57. }
  58.  
  59. .helper-object.RIGHT:after {
  60. left: 0;
  61. top: 50%;
  62. border-right-color: #fff;
  63. border-left: 0;
  64. margin-top: -10px;
  65. margin-left: -10px;
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement