Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. @charset "utf-8";
  2.  
  3. * {
  4. padding: 0;
  5. margin: 0;
  6. }
  7.  
  8. body {
  9. font: 14px/18px Tahoma, Arial, sans-serif;
  10. }
  11.  
  12. .container {
  13. width: 80%;
  14. margin: 30px auto;
  15. overflow: hidden;
  16. }
  17.  
  18. h1 {
  19. padding-bottom: 20px;
  20. margin-bottom: 40px;
  21. border-bottom: 1px #D8D8D8 solid;
  22.  
  23. line-height: 1;
  24. font-weight: normal;
  25. color: #666666;
  26. }
  27.  
  28. p {
  29. margin-bottom: 30px;
  30.  
  31. line-height: 24px;
  32. color: #4C4C4C;
  33. }
  34.  
  35. img {
  36. display: block;
  37. width: 100%;
  38. margin-bottom: 30px;
  39. }
  40.  
  41. a {
  42. text-decoration: none;
  43. color: #00ACDE;
  44. }
  45.  
  46. .tooltip {
  47. padding: 10px 15px 12px 15px;
  48. border-radius: 7px;
  49. background-color: rgba(0, 0, 0, .8);
  50.  
  51. opacity: 1;
  52. -webkit-transition: visibility 0.2s, opacity 0.2s;
  53. transition: visibility 0.2s, opacity 0.2s;
  54.  
  55. position: absolute;
  56. z-index: 9999;
  57.  
  58. font: 12px/1 Tahoma, Arial, sans-serif;
  59. text-align: center;
  60. color: #fff;
  61. }
  62.  
  63. .tooltip:after {
  64. content: "";
  65. display: block;
  66. width: 0;
  67. height: 0;
  68. margin-left: -6px;
  69. border-style: solid;
  70. border-width: 10px 6px 0 6px;
  71. border-color: rgba(0, 0, 0, .8) transparent transparent transparent;
  72.  
  73. position: absolute;
  74. left: 50%;
  75. bottom: -10px;
  76. }
  77.  
  78. .tooltip.hidden {
  79. opacity: 0;
  80. visibility: hidden;
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement