123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- /* Shared
- –––––––––––––––––––––––––––––––––––––––––––––––––– */
- .button {
- border-radius: 100px;
- }
- /* Sections
- –––––––––––––––––––––––––––––––––––––––––––––––––– */
- .section {
- padding: 8rem 0 7rem;
- text-align: center;
- }
- .section-heading,
- .section-description {
- margin-bottom: 1.2rem;
- }
- .section-description {
- text-align: justify;
- margin-top: 1rem;
- margin-bottom: 1rem;
- }
- .subsection {
- padding: 3rem 0 2rem;
- text-align: center;
- }
- /* Hero
- –––––––––––––––––––––––––––––––––––––––––––––––––– */
- .header {
- background-image: url('../img/header-bg.jpg');
- background-size: cover;
- color: #fff;
- padding-bottom: 5rem;
- text-align: center;
- }
- /* Values
- –––––––––––––––––––––––––––––––––––––––––––––––––– */
- .values {
- /*padding-bottom: 5rem;*/
- }
- .value-multiplier {
- margin-bottom: .5rem;
- color: #11DFC7;
- }
- .value-heading {
- margin-bottom: .3rem;
- }
- .value-description {
- opacity: .8;
- font-weight: 300;
- }
- /* Help
- –––––––––––––––––––––––––––––––––––––––––––––––––– */
- .get-help {
- border-bottom: 1px solid #ddd;
- }
- /* Categories
- –––––––––––––––––––––––––––––––––––––––––––––––––– */
- .categories {
- color: #fff;
- }
- .categories .section-description {
- margin-bottom: 4rem;
- }
- /* Questions
- –––––––––––––––––––––––––––––––––––––––––––––––––– */
- details {
- text-align: left;
- }
- details summary::-webkit-details-marker {
- display:none;
- }
- details summary {
- display: block;
- }
- .question {
- font-size: 20px;
- line-height: 30px;
- border-bottom: 1px solid #DDD;
- font-weight: 200;
- padding: 10px 0 10px 60px;
- cursor: pointer;
- position: relative;
- box-sizing: border-box;
- }
- details span::after {
- font-size: 26px;
- content: '+';
- height: 30px;
- width: 30px;
- content: '\f138';
- color: #334d63;
- font-size: 30px;
- font-family: 'ForkAwesome';
- }
- details[open] span::after {
- content: '-';
- line-height: 26px;
- content : "\f13a";
- color: #334d63;
- font-size: 30px;
- font-family: 'ForkAwesome';
- }
- .question span {
- position: absolute;
- left: 10px;
- /*background: transparent;
- height: 30px;
- width: 30px;
- border-radius: 50%;
- text-align: center;
- line-height: 30px;
- background-color: #334d63;
- color: white;
- -webkit-transition: all 0.2s ease;
- -moz-transition: all 0.2s ease;
- -o-transition: all 0.2s ease;
- transition: all 0.2s ease;
- box-sizing: content-box;*/
- }
- /* Media
- –––––––––––––––––––––––––––––––––––––––––––––––––– */
- /* Bigger than 550 */
- @media (min-width: 550px) {
- .section {
- padding: 8rem 0 7rem;
- }
- .header {
- padding-bottom: 12rem;
- height: 165px;
- }
- .header-heading {
- font-size: 2.4rem;
- }
- }
- /* Bigger than 750 */
- @media (min-width: 750px) {
- .header {
- height: 190px;
- }
- .header-heading {
- font-size: 2.6rem;
- }
- .section {
- padding: 8rem 0 7rem;
- }
- .header {
- padding: 16rem 0 14rem;
- }
- .section-description {
- max-width: 80%;
- margin-left: auto;
- margin-right: auto;
- }
- .categories {
- padding: 15rem 0 8rem;
- }
- }
- /* Bigger than 1000 */
- @media (min-width: 1000px) {
- .section {
- padding: 8rem 0 7rem;
- }
- .header {
- padding: 22rem 0;
- }
- .header-heading {
- font-size: 3.0rem;
- }
- }
|