| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- ---
- ---
- @import "variables";
- //
- // BASE
- //
- html,
- body {
- min-height: 100%;
- }
- body {
- {% if site.background_color %}
- background-color: {{ site.background_color }};
- {% endif %}
- {% if site.background_image %}
- background: linear-gradient(rgba(59, 61, 64, 0.5), rgba(59, 61, 64, 0.5)), url(../../{{ site.background_image }}) no-repeat center center;
- -webkit-background-size: cover;
- -moz-background-size: cover;
- -o-background-size: cover;
- background-size: cover;
- {% endif %}
- {% if site.text_color %}
- color: {{ site.text_color }};
- {% endif %}
- font-size: 18px;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- }
- a {
- transition: all .3s;
- }
- ul {
- list-style-type: disc;
- }
- {% if site.link_color %}
- a {
- color: {{ site.link_color }};
- }
- a:focus,
- a:hover {
- color: darken({{ site.link_color }}, 5%);
- }
- ul > li {
- color: {{ site.link_color }};
- }
- ul > li > span {
- color: black;
- }
- {% endif %}
- //
- // LAYOUT / SECTIONS
- //
- .container {
- max-width: 980px;
- }
- .main {
- position: relative;
- min-height: 100%;
- padding-top: 70px;
- padding-bottom: 60px;
- }
- .footer {
- padding-bottom: 50px;
- }
- .footer-links {
- padding-right: 12px;
- font-size: 14px;
- }
- .footer-links:focus,
- .footer-links:hover {
- padding-right: 12px;
- font-size: 14px;
- {% if site.link_color %}
- color: darken({{ site.link_color }}, 5%);
- {% endif %}
- }
- //
- // Marketing
- //
- .marketing {
- text-align: center;
- }
- .app-meta {
- margin-bottom: 20px;
- font-size: 32px;
- }
- .app-icon {
- display: block;
- margin: 0 auto 10px;
- border-radius: 15px;
- width: 92px;
- }
- .marketing-desc {
- margin: 0 auto 20px;
- max-width: 450px;
- white-space: pre-wrap;
- font-weight: 500;
- }
- .marketing-features {
- margin: 0 auto 20px;
- max-width: 450px;
- white-space: pre-wrap;
- font-weight: 500;
- }
- //
- // Download Buttons
- //
- .download-buttons {
- margin-bottom: 20px;
- }
- .download-btn {
- margin-top: 20px;
- margin-right: 20px;
- margin-bottom: 20px;
- border: none;
- background-color: #0191FF;
- color: #fff;
- {% if site.download_button_background_color %}
- background-color: {{ site.download_button_background_color }};
- {% endif %}
- {% if site.download_button_text_color %}
- color: {{ site.download_button_text_color }};
- {% endif %}
- }
- .download-btn:focus,
- .download-btn:hover {
- background-color: darken(#0191FF, 5%);
- color: #fff;
- {% if site.download_button_background_color %}
- background-color: darken({{ site.download_button_background_color }}, 5%);
- {% endif %}
- {% if site.download_button_text_color %}
- color: {{ site.download_button_text_color }};
- {% endif %}
- }
- //
- // Social
- //
- .social {
- text-align: left;
- }
- .social-links {
- padding-left: 0;
- margin-left: -5px;
- list-style: none;
- }
- .social-links li {
- display: inline-block;
- margin: 12px;
- }
- {% if site.social_link_color %}
- .social-links a {
- color: {{ site.social_link_color }};
- }
- .social-links a:focus,
- .social-links a:hover {
- color: darken({{ site.social_link_color }}, 5%);
- }
- {% endif %}
- //
- // Device
- //
- .device {
- margin: auto;
- }
- //
- // large screens
- //
- @media (min-width: 768px) {
- .marketing {
- text-align: left;
- }
- .app-icon {
- display: inline;
- }
- .marketing-desc {
- text-align: left;
- }
- }
- //
- // more imports
- //
- @import "devices";
|