jquery.meow.css 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. .meows {
  2. position: fixed;
  3. top: 80px;
  4. right: 0;
  5. z-index: 1031;
  6. }
  7. .meow {
  8. margin: 20px 20px 0 0;
  9. position: relative;
  10. }
  11. .meow .inner {
  12. background: #191919;
  13. zoom: 1;
  14. filter: alpha(opacity = 75);
  15. background: rgba(25, 25, 25, .75);
  16. border: 2px solid transparent;
  17. -moz-border-radius: 10px;
  18. -webket-border-radius: 10px;
  19. -khtml-border-radius: 10px;
  20. -o-border-radius: 10px;
  21. border-radius: 10px;
  22. -moz-box-shadow: 2px 2px 10px rgba(25, 25, 25, .25);
  23. -webkit-box-shadow: 2px 2px 10px rgba(25, 25, 25, .25);
  24. -khtml-box-shadow: 2px 2px 10px rgba(25, 25, 25, .25);
  25. -o-box-shadow: 2px 2px 10px rgba(25, 25, 25, .25);
  26. box-shadow: 2px 2px 10px rgba(25, 25, 25, .25);
  27. color: #fff;
  28. font-family: Helvetica, Arial, sans-serif;
  29. font-size: 15px;
  30. padding: 10px;
  31. text-shadow: 1px 1px 3px #000;
  32. width: 300px;
  33. min-height: 48px;
  34. }
  35. .meow .inner:after {
  36. content: "\0200";
  37. display: block;
  38. clear: both;
  39. visibility: hidden;
  40. line-height: 0;
  41. height: 0;
  42. }
  43. .meow.hover .inner {
  44. border: 2px solid #fff;
  45. }
  46. .meow .inner h1 {
  47. font-size: 14px;
  48. font-weight: bold;
  49. margin: 0;
  50. padding: 0;
  51. line-height: 1;
  52. }
  53. .meow .inner .icon {
  54. width: 48px;
  55. height: 48px;
  56. float: left;
  57. margin-right: 6px;
  58. }
  59. .meow .inner .icon img {
  60. max-width: 48px;
  61. max-height: 48px;
  62. }
  63. .meow .inner .close {
  64. display: none;
  65. }
  66. .meow.hover .inner .close {
  67. background: #191919;
  68. zoom: 1;
  69. filter: alpha(opacity = 75);
  70. background: rgba(25, 25, 25, .75);
  71. border: 2px solid #ffffff;
  72. -khtml-border-radius: 18px;
  73. -moz-border-radius: 18px;
  74. -o-border-radius: 18px;
  75. -webket-border-radius: 18px;
  76. border-radius: 18px;
  77. color: #ffffff;
  78. display: block;
  79. font-size: 22px;
  80. font-weight: 500;
  81. height: 18px;
  82. left: 4px;
  83. line-height: 14px;
  84. position: absolute;
  85. text-align: center;
  86. text-decoration: none;
  87. top: 4px;
  88. width: 18px;
  89. }