style.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. html, body
  2. {
  3. margin: 0;
  4. font-family: sans-serif;
  5. }
  6. a, a:visited, a:link, a:active {
  7. color: #2da6b0;
  8. text-decoration: none;
  9. }
  10. a:hover {
  11. color: #2da6b0;
  12. text-decoration: underline;
  13. }
  14. #topbar {
  15. background-color: #2da6b0;
  16. height: 60px;
  17. margin:auto;
  18. }
  19. #topbar .title {
  20. position: relative;
  21. top: 24px;
  22. left: 24px;
  23. color: white;
  24. font-family: sans-serif;
  25. font-weight: bold;
  26. }
  27. #main {
  28. max-width:1100px;
  29. margin:auto;
  30. }
  31. #main h2 {
  32. text-align: left;
  33. }
  34. #main table {
  35. width:100%;
  36. border-collapse: collapse;
  37. font-size: small;
  38. font-family: 'SF Mono', 'Menlo', 'Monaco', 'Courier New', Courier, monospace;
  39. }
  40. #main table tr td {
  41. border: solid black 1px;
  42. padding: 5px;
  43. }
  44. #main table tr td.hash {
  45. text-align: right;
  46. border-left: none;
  47. font-size: x-small;
  48. }
  49. #main table tr td.name {
  50. text-align: left;
  51. border-right: none;
  52. }
  53. p.description
  54. {
  55. font-size: smaller;
  56. }
  57. #metadata {
  58. margin-top: 15px;
  59. padding: 15px;
  60. font-family: 'SF Mono', 'Menlo', 'Monaco', 'Courier New', Courier, monospace;
  61. }
  62. #metadata span.fieldname {
  63. font-family: sans-serif;
  64. }