custom.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. body {
  2. background-image: url('../images/disegno.svg'), url('../images/sfondo.png');
  3. background-position: top left, center center fixed;
  4. background-repeat: no-repeat;
  5. background-size: auto, cover;
  6. background-attachment: fixed;
  7. padding-top: 45px;
  8. color: #66BF7A; }
  9. #main-block {
  10. background-color: rgba(61, 66, 59, .53);
  11. }
  12. #navbar-block {
  13. background-color: rgba(61, 66, 59, 0);
  14. border: 0;
  15. }
  16. .navbar-default .navbar-nav > li > a {
  17. color: #85CC95;
  18. }
  19. .navbar-brand {
  20. font-family: HugFemmesBold;
  21. font-weight: 700;
  22. }
  23. /* Tables */
  24. table {margin: .5em auto 1.5em auto; width: 98%;}
  25. /* Thead */
  26. thead th {padding: .5em .4em; text-align: center;}
  27. thead td {}
  28. /* Tbody */
  29. tbody td {padding: .5em .4em;}
  30. tbody th {}
  31. tbody .alt td {}
  32. tbody .alt th {}
  33. /* Tfoot */
  34. tfoot th {}
  35. tfoot td {}
  36. .entry-content table {
  37. background: none;
  38. border: 1px solid white;
  39. }
  40. .entry-content table tr:nth-child(even) {
  41. background-color: rgba(0,0,0,0.2);
  42. }
  43. /* This is to make the dedication slightly more compact */
  44. .slug-index .entry-content p {
  45. line-height: 0.5em;
  46. }