123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- .textleft {
- text-align: left;
- }
- .textcentre {
- text-align: center;
- }
- .textright {
- text-align: right;
- }
- p {
- margin: 0 0 20px 0;
- }
- strong, b {
- font-weight: 600;
- }
- em, i {
- font-style: italic;
- }
- h1 {
- margin: 0 0 10px 0;
- font-weight: 700;
- font-family: "Montserrat";
- text-transform: uppercase;
- font-size: 46px;
- line-height: 42px;
- letter-spacing: -1px;
- color: #111;
- }
- h2 {
- margin: 30px 0 15px 0;
- font-weight: 350;
- font-family: "Montserrat";
- text-transform: uppercase;
- font-size: 23px;
- line-height: 21px;
- letter-spacing: -0.5px;
- color: #111;
- }
- h3 {
- margin: 26px 0 13px 0;
- font-weight: 200;
- font-family: "Montserrat";
- font-size: 16px;
- line-height: 16px;
- letter-spacing: -0.4px;
- color: #111;
- }
- h4, h5, h6 {
- margin: 20px 0 10px 0;
- font-weight: 100;
- font-family: "Montserrat";
- font-size: 12px;
- line-height: 12px;
- color: #111;
- }
- ul {
- margin: 0 0 20px 35px;
- list-style-type: square;
- }
- ul li {
- padding: 0 0 0 2px;
- }
- ul ul {
- margin: 0 0 0 25px;
- }
- ol {
- margin: 0 0 20px 35px;
- list-style-type: decimal;
- }
- ol li {
- padding: 0 0 0 2px;
- }
- ol ol {
- margin: 0 0 0 25px;
- }
- hr {
- clear: both;
- float: left;
- width: 100%;
- padding: 0;
- margin: 30px 0 40px 0;
- border: none;
- border-top: 4px solid #A71E2E;
- text-align: center;
- }
- blockquote {
- background: #EEE;
- margin: 0 0 5px 0 !important;
- color: #555;
- border-left: 5px solid #A71E2E;
- padding: 15px;
- font-style: italic;
- }
- blockquote p {
- margin: 0;
- }
- blockquote p.author {
- text-align: right;
- font-size: 14px;
- letter-spacing: 2px;
- color: #999;
- }
- @media screen and (max-width: 768px) {
- .textcentre {
- text-align: left;
- }
- .textright {
- text-align: left;
- }
- }
|