123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- @import "vars";
- #landing-header {
- background-color: rgba(255,255,255,0.3);
- height: 64px;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- }
- .landing-keyvisual-wrapper {
- background-image: url("../images/sd5-keyvisual-compressed.jpg");
- background-size: cover;
- background-position: center;
- padding-top: 40px;
- padding-bottom: 40px;
- }
- .landing-plans-wrapper {
- background-image: url("../images/sd5-hero2-compressed.jpg");
- background-size: cover;
- background-position: center;
- padding-top: 80px;
- padding-bottom: 100px;
- }
- .landing-box {
- width: 800px;
- margin: auto;
- max-width: 90%;
- background-color: white;
- padding: 40px;
- margin-bottom: 80px;
- margin-top: 80px;
- position: relative;
- box-shadow: 0px 0px 50px rgba(0,0,0,0.2);
- h1 {
- margin-bottom: 20px;
- }
- &.black {
- background-color: #222;
- color: white;
- padding: 20px;
- text-align: center;
- }
- &.overlap {
- position: absolute;
- z-index: 2;
- margin-top: -65px;
- left: 50%;
- top: 0px;
- margin-left: -250px;
- width: 500px;
- }
- &.screenshot {
- width: 90%;
- max-width: 90%;
- padding: 20px;
- box-shadow: none;
- background-color: transparent;
- img {
- width: 100%;
- position: absolute;
- top: 0px;
- left: 0px;
- opacity: 0.3;
- }
- }
- &.landing-box-left {
- margin-left: 30px;
- }
- }
- .lead-xxl {
- }
- .lead {
- margin-bottom: 20px;
- }
- .lead-xl {
- }
- .plans-box {
- background: linear-gradient(to bottom, #FEFFFF 25%,#D0D8E2 100%);
- padding: 40px;
- border-radius: 9px;
- }
- .landing-box.plans-box {
- margin-top: 200px;
- width: 900px;
- }
- .plans-table {
- tr {
- vertical-align: top;
- }
- th {
- font-size: 42px;
- padding-top: 40px;
- text-align: center;
- }
- th.best-plan {
- padding-top: 20px;
- font-size: 48px;
- padding-bottom: 0px;
- }
- td {
- padding: 20px;
- width: 30%;
- p, li {
- font-size: 18px;
- }
- li {
- margin-bottom: 10px;
- }
- }
- td.best-plan {
- width: 40%;
- p {
- font-size: 22px;
- }
- }
- td li {
- list-style-type: none;
- text-align: center;
- }
- ul {
- margin: 0 !important;
- padding: 0 !important;
- }
- .upgrade-buttons {
- text-align:center;
- margin-top:20px;
- }
- }
- .logo-row {
- position: relative;
- padding: 80px;
- background-color: white;
- text-align: center;
- width: 100%;
- &.blue {
- background-color: $blue;
- color: white;
- }
- }
- .logo-row div {
- display: inline-block;
- width: 200px;
- }
- .landing-row {
- background-color: white;
- padding-bottom: 80px;
- padding-top: 40px;
- }
- #keyvisual {
- border-radius: 20px;
- box-shadow: 0px 0px 20px #eee;
- width: 640px;
- height: 420px;
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center;
- background-image: url('/images/landing/spacedeck-screenshot1.jpg');
- background-color: white;
- margin: auto;
- margin-top: 40px;
- margin-bottom: 40px;
- border: 1px solid #eee;
- }
- #legal {
- .landing-box {
- width: 800px;
- }
- }
- .footer {
- padding: 40px;
- padding-bottom: 80px;
- text-align: center;
- color: $medium;
- a {
- margin-right: 20px;
- }
- }
- @media screen and (min-width: 801px) {
- .plans-table-mobile {
- display: none;
- }
- }
-
- @media screen and (max-width: 800px) {
- ul.lead.lead-xl, p.lead.lead-xl, ol.lead.lead-xl {
- font-size: 20px !important;
- }
- .header-right {
- > span:first-child {
- display: none;
- }
- }
-
- .plans-table {
- display: none;
- }
-
- .plans-table-mobile {
- display: block;
- tbody {
- display: block;
- width: 100%;
- }
- tr {
- display: block;
- width: 100%;
- }
- td, th {
- display: block;
- width: 100%;
- }
- ul, li {
- width: 100%;
- }
- }
- }
|