style.css 594 B

1234567891011121314151617181920212223242526272829303132
  1. /** element **/
  2. body {
  3. background: #fff url('img/bg_tirnanog.jpg') fixed repeat;
  4. background-size: cover;
  5. font-size: 18px;
  6. }
  7. a {
  8. color: #1a8481;
  9. text-decoration: wavy;
  10. }
  11. h1, h2, h3 {
  12. color: #000;
  13. font-family: sans-serif;
  14. background: #1b8685;
  15. border-radius: 1em;
  16. box-sizing: border-box;
  17. margin: 0;
  18. padding: 0.5em;
  19. }
  20. /** class **/
  21. .content {
  22. background: rgb(0,0,0,0.9);
  23. border-radius: 1em;
  24. box-sizing: border-box;
  25. color: #fff;
  26. margin: 1em auto;
  27. max-width: 720px;
  28. padding: 1em;
  29. text-align: left;
  30. }
  31. .curve {border-radius: 1em;}