upload
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

lufa_studio_help_styling.css 842B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. LUFA Library
  3. Copyright (C) Dean Camera, 2013.
  4. dean [at] fourwalledcubicle [dot] com
  5. www.lufa-lib.org
  6. */
  7. .programlisting {
  8. display: block;
  9. margin-left: 15px;
  10. padding: 10px;
  11. background-color: #f4f4f4;
  12. border: 1px solid #aaaaaa;
  13. font-family: "Consolas", "Courier New", sans-serif;
  14. }
  15. code {
  16. background-color: #f4f4f4;
  17. font-family: "Consolas", "Courier New", sans-serif;
  18. }
  19. .note, .warning, .tip {
  20. display: block;
  21. margin-left: 15px;
  22. padding-left: 10px;
  23. padding-bottom: 5px;
  24. background-color: #f4f4f4;
  25. border: 1px solid #aaaaaa;
  26. }
  27. table {
  28. border: 1px solid #aaaaaa;
  29. border-collapse: collapse;
  30. margin-left: 15px;
  31. font-size: 10pt;
  32. }
  33. table thead {
  34. background-color: #f4f4f4;
  35. }
  36. table thead th {
  37. padding: 5px;
  38. }
  39. table tbody td {
  40. padding: 5px;
  41. }
  42. ul {
  43. padding-left: 20px;
  44. }