| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- .home {
- padding-bottom: @footer-margin * 2;
- .logo {
- margin-bottom: @20;
- }
- .hero {
- h1 {
- font-size: 4.5em;
- font-weight: 400;
- }
- h2 {
- margin-top: 0;
- font-size: 2em;
- }
- }
- }
- .prompt {
- &.box {
- border-radius: 10px !important;
- padding: 50px;
- margin-top: 30px !important;
- }
- }
- .signup {
- padding-top: @15;
- padding-bottom: @footer-margin * 2;
- }
- .home-main {
- p {
- font-size: 16px;
- color: #586069;
- }
- .ui.icon.header {
- font-weight: 400;
- }
- &.bg {
- background-image: linear-gradient(180deg, rgba(255,255,255,0) 50%, #fff),linear-gradient(70deg, #cde7ff 32%, #d3ffdd);
- }
- .align {
- margin-top: 1em;
- }
- .desc {
- padding-right: 8em;
- padding-left: 8em;
- font-family: monospace !important;
- font-size: 1.2em;
- }
- &.btn {
- &.home {
- margin-top: 50px;
- margin-left: 8px;
- margin-right: 8px;
- }
-
- &.register {
- background: #21ba45 !important;
- border-radius: 2em !important;
- height: 2.5em;
- text-transform: uppercase;
- font-size: 12px;
- letter-spacing: 0.03em;
- &:hover {
- color: #f5f5f5 !important;
- }
- }
-
- &.signin {
- text-transform: uppercase;
- font-size: 12px;
- letter-spacing: 0.03em;
- }
- }
- &.prompt {
- background-image: url(https://cdn.gitote.in/img/pattern.svg);
- background-position: center 30%;
- background-size: 25% auto;
- background-color: #f3f3f3;
- padding-top: @25;
- padding-bottom: 12px;
- }
- &.padding {
- padding-top: 4em;
- padding-bottom: 4em;
- }
- &.getstarted {
- background: @primary !important;
-
- h1 {
- color: @white-100;
- font-weight: 400;
- padding-top: 1em;
- padding-bottom: 1em;
- }
- }
- &.gradient-bg {
- background-image: linear-gradient(180deg,hsla(0,0%,100%,0) 50%,#fff),linear-gradient(70deg,#eaf5ff 32%,#f6fff8);
- }
- }
- .home-head {
- padding-top: 6.9em !important;
- padding-bottom: 6.9em !important;
- }
- // Mobile
- @media (max-width: 1020px) {
- .home-main {
- .desc, &.prompt {
- display: none !important;
- }
- }
- }
|