Advertisement
englishextra

jquery.pnotify.fixed.default.css

Mar 18th, 2014
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.03 KB | None | 0 0
  1. /*!
  2.  * jquery.pnotify.fixed.default.css
  3.  * http://pastebin.com/Hve9QVhz
  4.  * Document : jquery.pnotify.default.css
  5.  * Created on : Nov 23, 2009, 3:14:10 PM
  6.  * Author : Hunter Perrin
  7.  * Version : 1.3.0
  8.  * Link : sciactive.com/pnotify/
  9.  * Description: Default styling for PNotify jQuery plugin.
  10.  */
  11. .ui-pnotify {
  12.     top: 25px;
  13.     right: 25px;
  14.     position: absolute;
  15.     height: auto;
  16.     z-index: 9999;
  17.     font-family: inherit;
  18.     color: #FFF;
  19.     background: #A0A0A0;
  20. }
  21. html > body > .ui-pnotify {
  22.     position: fixed;
  23. }
  24. .ui-pnotify .ui-pnotify-shadow {
  25.     -webkit-box-shadow: 0px 2px 10px rgba(50, 50, 50, 0.5);
  26.     -moz-box-shadow: 0px 2px 10px rgba(50, 50, 50, 0.5);
  27.     box-shadow: 0px 2px 10px rgba(50, 50, 50, 0.5);
  28. }
  29. .ui-pnotify-container {
  30.     background-position: 0 0;
  31.     padding: .8em;
  32.     height: 100%;
  33.     margin: 0;
  34. }
  35. .ui-pnotify-sharp {
  36.     -webkit-border-radius: 0;
  37.     -moz-border-radius: 0;
  38.     border-radius: 0;
  39. }
  40. .ui-pnotify-closer, .ui-pnotify-sticker {
  41.     float: right;
  42.     margin-left: .2em;
  43. }
  44. .ui-pnotify-title {
  45.     display: block;
  46.     margin-bottom: .4em;
  47.     margin-top: 0;
  48.     font-weight: 600;
  49. }
  50. .ui-pnotify-text {
  51.     display: block;
  52. }
  53. .ui-pnotify-icon, .ui-pnotify-icon span {
  54.     display: block;
  55.     float: left;
  56.     margin-right: .2em;
  57. }
  58. .ui-pnotify-history-container {
  59.     position: absolute;
  60.     top: 0;
  61.     right: 18px;
  62.     width: 70px;
  63.     border-top: none;
  64.     padding: 0;
  65.     -webkit-border-top-left-radius: 0;
  66.     -moz-border-top-left-radius: 0;
  67.     border-top-left-radius: 0;
  68.     -webkit-border-top-right-radius: 0;
  69.     -moz-border-top-right-radius: 0;
  70.     border-top-right-radius: 0;
  71.     z-index: 10000;
  72. }
  73. .ui-pnotify-history-container .ui-pnotify-history-header {
  74.     padding: 2px;
  75.     text-align: center;
  76. }
  77. .ui-pnotify-history-container button {
  78.     cursor: pointer;
  79.     display: block;
  80.     width: 100%;
  81. }
  82. .ui-pnotify-history-container .ui-pnotify-history-pulldown {
  83.     display: block;
  84.     margin: 0 auto;
  85. }
  86. .ui-pnotify.stack-topleft, .ui-pnotify.stack-bottomleft {
  87.     left: 25px;
  88.     right: auto;
  89. }
  90. .ui-pnotify.stack-bottomright, .ui-pnotify.stack-bottomleft {
  91.     bottom: 25px;
  92.     top: auto;
  93. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement