Native.css 818 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Stylesheet designed to be used as the user stylesheet by apps that want their
  3. * web content to look like the native GUI.
  4. */
  5. html {
  6. background-color: -libweb-palette-base;
  7. color: -libweb-palette-base-text;
  8. }
  9. input, textarea {
  10. border-color: -libweb-palette-threed-shadow1;
  11. }
  12. button, input[type=submit], input[type=button], input[type=reset] {
  13. background-color: -libweb-palette-button;
  14. border-color: -libweb-palette-threed-shadow1;
  15. color: -libweb-palette-button-text;
  16. }
  17. button:hover, input[type=submit]:hover, input[type=button]:hover, input[type=reset]:hover {
  18. background-color: -libweb-palette-hover-highlight;
  19. }
  20. :link {
  21. color: -libweb-link;
  22. }
  23. :visited {
  24. color: -libweb-palette-visited-link;
  25. }
  26. :link:active, :visited:active {
  27. color: -libweb-palette-active-link;
  28. }