Advertisement
Pvsave

MSGBOX

May 27th, 2018
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. /* -----------------------------------------------
  2. Message Boxes mod for SMF
  3.  
  4. Thanks for eBurhan
  5. http://www.eburhan.com/
  6.  
  7. Thanks for famfamfam icons
  8. http://www.famfamfam.com/
  9. -------------------------------------------------- */
  10.  
  11. .error_bbc, .warning_bbc, .okay_bbc, .info_bbc {
  12. margin-bottom: 1.5em;
  13. padding: 1em 1.5em 1em 5.5em;
  14. border-bottom: 2px solid #fff;
  15. border-top: 2px solid #fff;
  16. color: #444
  17. }
  18.  
  19. .error_bbc {background: #fbe3e4 url(../images/mBox/error.png) 2.2em center no-repeat; border-color: #e0011b}
  20. .error_bbc a {color: #d12f19}
  21.  
  22. .warning_bbc {background: #fff6bf url(../images/mBox/warning.png) 2.2em center no-repeat; border-color: #ffd324}
  23. .warning_bbc a {color: #817134}
  24.  
  25. .okay_bbc {background: #e9ffdd url(../images/mBox/okay.png) 2.2em center no-repeat; border-color: #72c868}
  26. .okay_bbc a {color: #529214}
  27.  
  28. .info_bbc {background: #e2ecee url(../images/mBox/info.png) 2.2em center no-repeat; border-color: #9ddae6}
  29. .info_bbc a {color: #2d7ba2}
  30.  
  31.  
  32. /* Lists */
  33. .error_bbc ul, .warning_bbc ul, .okay_bbc ul, .info_bbc ul {
  34. list-style: none;
  35. margin: 1.3em 1.5em
  36. }
  37. .error_bbc ul li, .warning_bbc ul li, .okay_bbc ul li, .info_bbc ul li {
  38. padding-left: 1.3em
  39. }
  40. .error_bbc ul li { background: url(../images/mBox/error-bullet.png) 0 0.55em no-repeat }
  41. .warning_bbc ul li { background: url(../images/mBox/warning-bullet.png) 0 0.55em no-repeat }
  42. .okay_bbc ul li { background: url(../images/mBox/okay-bullet.png) 0 0.55em no-repeat }
  43. .info_bbc ul li { background: url(../images/mBox/info-bullet.png) 0 0.55em no-repeat }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement