You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

104 lines
3.3 KiB

  1. .ui.nag {
  2. display: none;
  3. position: absolute;
  4. top: 0px;
  5. left: 10%;
  6. z-index: 100;
  7. width: 80%;
  8. min-height: 20px;
  9. -webkit-box-sizing: border-box;
  10. -moz-box-sizing: border-box;
  11. -ms-box-sizing: border-box;
  12. box-sizing: border-box;
  13. padding: 8px 20px;
  14. background-color: #272626;
  15. background: -webkit-linear-gradient(top, rgba(22, 22, 22, 0.85) 0%, #111111 100%);
  16. background: -moz-linear-gradient(top, rgba(22, 22, 22, 0.85) 0%, #111111 100%);
  17. background: -o-linear-gradient(top, rgba(22, 22, 22, 0.85) 0%, #111111 100%);
  18. background: -ms-linear-gradient(top, rgba(22, 22, 22, 0.85) 0%, #111111 100%);
  19. background: linear-gradient(top, rgba(22, 22, 22, 0.85) 0%, #111111 100%);
  20. -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px rgba(255, 255, 255, 0.1) inset;
  21. -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px rgba(255, 255, 255, 0.1) inset;
  22. box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4), 0px 1px 0px rgba(255, 255, 255, 0.1) inset;
  23. text-align: center;
  24. font-size: 14px;
  25. font-weight: bold;
  26. color: #009FDA;
  27. text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.8);
  28. -webkit-border-radius: 0px 0px 5px 5px;
  29. -moz-border-radius: 0px 0px 5px 5px;
  30. border-radius: 0px 0px 5px 5px;
  31. -webkit-transition: 0.2s background;
  32. -moz-transition: 0.2s background;
  33. -o-transition: 0.2s background;
  34. -ms-transition: 0.2s background;
  35. transition: 0.2s background;
  36. }
  37. .ui.nag .close {
  38. cursor: pointer;
  39. opacity: 0.4;
  40. position: absolute;
  41. top: 50%;
  42. right: 15px;
  43. margin-top: -6px;
  44. font-size: 12px;
  45. color: #FFFFFF;
  46. -webkit-transition: 0.1s opacity;
  47. -moz-transition: 0.1s opacity;
  48. -o-transition: 0.1s opacity;
  49. -ms-transition: 0.1s opacity;
  50. transition: 0.1s opacity;
  51. }
  52. .ui.nag .close.hover {
  53. opacity: 1;
  54. }
  55. .ui.nag b {
  56. font-weight: bold;
  57. color: #EEEEEE;
  58. }
  59. /* Bottom Style */
  60. .ui.nag.bottom {
  61. -webkit-border-radius: 5px 5px 0px 0px;
  62. -moz-border-radius: 5px 5px 0px 0px;
  63. border-radius: 5px 5px 0px 0px;
  64. }
  65. /* Fixed Style */
  66. .ui.nag.fixed {
  67. position: fixed;
  68. }
  69. .ui.nag.bottom.fixed {
  70. top: auto;
  71. bottom: 0px;
  72. }
  73. /* Link Style */
  74. .ui.nag.hover {
  75. cursor: pointer;
  76. background-color: #272626;
  77. background: -webkit-linear-gradient(top, #161616 0%, #111111 100%);
  78. background: -moz-linear-gradient(top, #161616 0%, #111111 100%);
  79. background: -o-linear-gradient(top, #161616 0%, #111111 100%);
  80. background: -ms-linear-gradient(top, #161616 0%, #111111 100%);
  81. background: linear-gradient(top, #161616 0%, #111111 100%);
  82. }
  83. .ui.nag.hover b {
  84. font-weight: bold;
  85. color: #FFFFFF;
  86. }
  87. /* White Variation */
  88. .ui.nag.white {
  89. background-color: #EEEEEE;
  90. background: -webkit-linear-gradient(top, #ffffff 0%, #dddddd 100%);
  91. background: -moz-linear-gradient(top, #ffffff 0%, #dddddd 100%);
  92. background: -o-linear-gradient(top, #ffffff 0%, #dddddd 100%);
  93. background: -ms-linear-gradient(top, #ffffff 0%, #dddddd 100%);
  94. background: linear-gradient(top, #ffffff 0%, #dddddd 100%);
  95. -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2), 0px 1px 0px rgba(255, 255, 255, 0.1) inset;
  96. -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2), 0px 1px 0px rgba(255, 255, 255, 0.1) inset;
  97. box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2), 0px 1px 0px rgba(255, 255, 255, 0.1) inset;
  98. text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
  99. color: #888888;
  100. }
  101. .ui.nag.white .close,
  102. .ui.nag.white b {
  103. color: #000000;
  104. }