about-us.css
104 lines
| 1 | .wpchill_about_us_container { |
| 2 | font-family: Arial, sans-serif; |
| 3 | margin: 0; |
| 4 | padding: 0; |
| 5 | box-sizing: border-box; |
| 6 | } |
| 7 | |
| 8 | .wpchill_container { |
| 9 | width: 80%; |
| 10 | margin: auto; |
| 11 | padding: 20px; |
| 12 | } |
| 13 | |
| 14 | .wpchill_title { |
| 15 | text-align: center; |
| 16 | font-size: 2.5em; |
| 17 | color: #333; |
| 18 | margin-bottom: 20px; |
| 19 | } |
| 20 | |
| 21 | .wpchill_logo { |
| 22 | display: block; |
| 23 | margin: 0 auto 20px; |
| 24 | width: 150px; |
| 25 | height: auto; |
| 26 | border-radius: 50%; |
| 27 | } |
| 28 | |
| 29 | .wpchill_tagline { |
| 30 | text-align: center; |
| 31 | font-style: italic; |
| 32 | font-size: 1.4em; |
| 33 | color: #555; |
| 34 | margin-bottom: 20px; |
| 35 | } |
| 36 | |
| 37 | .wpchill_description { |
| 38 | text-align: center; |
| 39 | font-size: 1.1em; |
| 40 | color: #666; |
| 41 | margin-bottom: 40px; |
| 42 | } |
| 43 | |
| 44 | .wpchill_table { |
| 45 | width: 100%; |
| 46 | border-collapse: collapse; |
| 47 | margin-bottom: 20px; |
| 48 | } |
| 49 | |
| 50 | .wpchill_table th, .wpchill_table td { |
| 51 | border: 1px solid #ddd; |
| 52 | padding: 10px; |
| 53 | text-align: center; |
| 54 | } |
| 55 | |
| 56 | .wpchill_table th { |
| 57 | background-color: #f2f2f2; |
| 58 | } |
| 59 | |
| 60 | .wpchill_table { |
| 61 | width: 100%; |
| 62 | border-collapse: collapse; |
| 63 | } |
| 64 | |
| 65 | .wpchill_table th:first-child, |
| 66 | .wpchill_table td:first-child { |
| 67 | width: 20%; |
| 68 | } |
| 69 | |
| 70 | .wpchill_table th:nth-child(2), |
| 71 | .wpchill_table td:nth-child(2) { |
| 72 | width: 60%; |
| 73 | } |
| 74 | |
| 75 | .wpchill_table th:nth-child(3), |
| 76 | .wpchill_table td:nth-child(3) { |
| 77 | width: 5%; |
| 78 | } |
| 79 | .wpchill_table th:nth-child(4), |
| 80 | .wpchill_table td:nth-child(4) { |
| 81 | width: 15%; |
| 82 | } |
| 83 | |
| 84 | .wpchill_footer { |
| 85 | text-align: center; |
| 86 | font-size: 0.9em; |
| 87 | color: #999; |
| 88 | margin-top: 20px; |
| 89 | } |
| 90 | |
| 91 | @media (max-width: 600px) { |
| 92 | .wpchill_container { |
| 93 | width: 100%; |
| 94 | padding: 10px; |
| 95 | } |
| 96 | |
| 97 | .wpchill_title { |
| 98 | font-size: 2em; |
| 99 | } |
| 100 | |
| 101 | .wpchill_description, .wpchill_tagline { |
| 102 | font-size: 1em; |
| 103 | } |
| 104 | } |