pyra.css 932 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <!--
  2. /* "Pyra" for Layout V3 */
  3. @media only screen and (min-width: 900px) {
  4. body {
  5. float: right;
  6. padding-right: 100px;
  7. min-width: 500px;
  8. overflow: scroll;
  9. overflow-x: hidden;
  10. }
  11. }
  12. body {
  13. background-image: url("./css/pyra.png");
  14. background-repeat: no-repeat;
  15. background-size: cover;
  16. background-attachment: fixed;
  17. background-color: #000000;
  18. background-position: top left;
  19. font-family: monospace;
  20. color: #FFFFFF;
  21. max-width:900px;
  22. margin: auto;
  23. font-size: large;
  24. margin-bottom: 10px;
  25. }
  26. a, a:visited {
  27. text-decoration: none;
  28. color: inherit;
  29. }
  30. .box, .card, nav {
  31. margin-top: 3%;
  32. margin-left: auto;
  33. margin-right: auto;
  34. background: #242424;
  35. padding: 10px 10px 5px 20px;
  36. }
  37. .box-smaller {
  38. max-width: 700px;
  39. }
  40. table {
  41. width: 100%;
  42. padding: 3px;
  43. }
  44. article a, ul a, td a {
  45. text-decoration: underline;
  46. }
  47. hr {
  48. display: none;
  49. }
  50. img.big {
  51. width: 100%;
  52. height: auto;
  53. }
  54. td {
  55. text-align: center;
  56. }
  57. -->