style.css 670 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /**
  2. @file noiewarning/style.css
  3. @brief NoIEWarning Cascade Style Sheet
  4. @author Luis Machuca Bezzaza
  5. @version 0.618
  6. This file contains the default stylesheet for the NoIEWarning plugin.
  7. **/
  8. div#noiewarning {
  9. margin: 0 auto;
  10. max-width: 80%;
  11. padding: 4px 0;
  12. padding-left: 20px;
  13. font-size: 90%;
  14. font-family: sans-serif;
  15. background-color: __background_neu__;
  16. border: 4px solid __text_neu__;
  17. border-radius: 4px;
  18. box-shadow: 2px 2px 4px __background_alt__;
  19. }
  20. /**
  21. * Generic styles
  22. */
  23. div#noiewarning > p {
  24. }
  25. div#noiewarning > p a {
  26. line-height: 1.5em;
  27. }
  28. div#noiewarning > p a:hover {
  29. text-decoration: none !important;
  30. }