style.css 489 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. body {
  2. padding: 10px 50px;
  3. background-color: #222;
  4. color: #cecece;
  5. font: 1.7em monospace;
  6. max-width: 800px;
  7. margin: auto auto;
  8. width: 100%;
  9. }
  10. a {
  11. color: #00B7FF;
  12. text-decoration: none;
  13. opacity: 0.8;
  14. }
  15. a:hover {
  16. opacity: 1;
  17. }
  18. h3 {
  19. text-align: right;
  20. text-decoration: underline;
  21. }
  22. h3 .subtitle {
  23. text-decoration: none;
  24. font-size: 0.8em;
  25. }
  26. code {
  27. display: block;
  28. left: 0px;
  29. right: 0px;
  30. position: relative;
  31. background-color: black;
  32. width: 100%;
  33. }