In this repo i store all my websites, each in a different branch
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

106 lignes
2.3 KiB

  1. /*
  2. * Tipper v3.1.0 - 2014-11-25
  3. * A jQuery plugin for simple tooltips. Part of the formstone library.
  4. * http://formstone.it/tipper/
  5. *
  6. * Copyright 2014 Ben Plum; MIT Licensed
  7. */
  8. .tipper {
  9. width: 1px;
  10. height: 1px;
  11. position: absolute;
  12. top: -999px;
  13. left: -999px;
  14. z-index: 10;
  15. opacity: 0;
  16. pointer-events: none;
  17. -webkit-transition: opacity 0.15s linear;
  18. transition: opacity 0.15s linear;
  19. }
  20. .tipper * {
  21. -webkit-transition: none;
  22. transition: none;
  23. }
  24. .tipper,
  25. .tipper * {
  26. -webkit-user-select: none !important;
  27. -moz-user-select: none !important;
  28. -ms-user-select: none !important;
  29. user-select: none !important;
  30. }
  31. .tipper,
  32. .tipper *,
  33. .tipper *:before,
  34. .tipper *:after {
  35. box-sizing: border-box;
  36. }
  37. .tipper.visible {
  38. opacity: 1;
  39. }
  40. .tipper .tipper-content {
  41. background: #323232;
  42. border-radius: 3px;
  43. color: #ffffff;
  44. display: block;
  45. float: left;
  46. font-size: 12px;
  47. margin: 0;
  48. padding: 7px 15px;
  49. position: relative;
  50. white-space: nowrap;
  51. }
  52. .tipper .tipper-caret {
  53. width: 0;
  54. height: 0;
  55. content: '';
  56. display: block;
  57. margin: 0;
  58. position: absolute;
  59. }
  60. .tipper.right .tipper-content {
  61. box-shadow: 1px 0 5px rgba(0, 0, 0, 0.35);
  62. }
  63. .tipper.right .tipper-caret {
  64. top: 0;
  65. left: -5px;
  66. border-top: 5px solid transparent;
  67. border-bottom: 5px solid transparent;
  68. border-right: 5px solid #323232;
  69. }
  70. .tipper.left .tipper-content {
  71. box-shadow: -1px 0 5px rgba(0, 0, 0, 0.35);
  72. }
  73. .tipper.left .tipper-caret {
  74. top: 0;
  75. right: -5px;
  76. border-top: 5px solid transparent;
  77. border-bottom: 5px solid transparent;
  78. border-left: 5px solid #323232;
  79. }
  80. .tipper.top .tipper-caret,
  81. .tipper.bottom .tipper-caret {
  82. display: block;
  83. float: none;
  84. margin: 0 auto;
  85. }
  86. .tipper.top .tipper-content {
  87. box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.35);
  88. }
  89. .tipper.top .tipper-caret {
  90. bottom: -5px;
  91. left: 0;
  92. border-left: 5px solid transparent;
  93. border-right: 5px solid transparent;
  94. border-top: 5px solid #323232;
  95. }
  96. .tipper.bottom .tipper-content {
  97. box-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
  98. }
  99. .tipper.bottom .tipper-caret {
  100. top: -5px;
  101. left: 0;
  102. border-left: 5px solid transparent;
  103. border-right: 5px solid transparent;
  104. border-bottom: 5px solid #323232;
  105. }