lgn.css 821 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. body {
  2. background-color: #028482;
  3. color: #99cdcd;
  4. font-family: 'BellotaRegular';
  5. font-weight: normal;
  6. font-style: normal;
  7. }
  8. a {
  9. color: #7ABA7A;
  10. }
  11. p {
  12. padding-left: 10%;
  13. padding-right: 10%;
  14. }
  15. h2 {
  16. text-align: center;
  17. }
  18. h3 {
  19. text-align: center;
  20. }
  21. table {
  22. width: 50%;
  23. }
  24. ul {
  25. text-align: center;
  26. list-style-type: none;
  27. }
  28. footer {
  29. text-align: center;
  30. }
  31. .titlebar {
  32. color: #028482;
  33. background-color: #7ABA7A;
  34. padding-top: 10px;
  35. padding-bottom: 10px;
  36. vertical-align: middle;
  37. }
  38. .titlebar a {
  39. color: inherit;
  40. }
  41. @media (min-width: 992px) and (max-width: 1199px) {
  42. body {
  43. font-size: 20px;
  44. }
  45. }
  46. @media (min-width: 1200px) {
  47. body {
  48. font-size: 20px;
  49. }
  50. }
  51. table {
  52. margin-left: auto;
  53. margin-right: auto;
  54. }