12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- body {
- background-color: #028482;
- color: #99cdcd;
- font-family: 'BellotaRegular';
- font-weight: normal;
- font-style: normal;
- }
- a {
- color: #7ABA7A;
- }
- p {
- padding-left: 10%;
- padding-right: 10%;
- }
- h2 {
- text-align: center;
- }
- h3 {
- text-align: center;
- }
- table {
- width: 50%;
- }
- ul {
- text-align: center;
- list-style-type: none;
- }
- footer {
- text-align: center;
- }
- .titlebar {
- color: #028482;
- background-color: #7ABA7A;
- padding-top: 10px;
- padding-bottom: 10px;
- vertical-align: middle;
- }
- .titlebar a {
- color: inherit;
- }
- @media (min-width: 992px) and (max-width: 1199px) {
- body {
- font-size: 20px;
- }
- }
- @media (min-width: 1200px) {
- body {
- font-size: 20px;
- }
- }
- table {
- margin-left: auto;
- margin-right: auto;
- }
|