|
@@ -1,4 +1,302 @@
|
|
|
/* your styles go here */
|
|
|
+.text-center {
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+/* LP-components nav */
|
|
|
+#navigation .navbar-nav .main-link {
|
|
|
+ background-color: white;
|
|
|
+ border-top: none;
|
|
|
+ color: black;
|
|
|
+ font-weight: 400;
|
|
|
+ padding: 3px 3px 3px 3px;
|
|
|
+ margin: 18px 12px 18px 12px;
|
|
|
+ font-size: 1.5rem;
|
|
|
+ text-decoration: none;
|
|
|
+}
|
|
|
+
|
|
|
+#navigation .navbar-nav .dropdown.active .main-link {
|
|
|
+ border-bottom: 3px solid #EA5413;
|
|
|
+}
|
|
|
+
|
|
|
+#navigation .navbar-nav .signin-link {
|
|
|
+ padding: 8px 18px 8px 18px;
|
|
|
+ margin: 13px 10px 13px 10px;
|
|
|
+ text-decoration: none;
|
|
|
+ color: #EA5413;
|
|
|
+ font-size: 1.5rem;
|
|
|
+ font-weight: 400;
|
|
|
+ border: 1px solid #EA5413;
|
|
|
+ border-radius: 3rem;
|
|
|
+}
|
|
|
+
|
|
|
+#navigation .navbar-nav .signin-link:hover, #navigation .navbar-nav .signin-link:focus {
|
|
|
+
|
|
|
+ background-color: transparent;
|
|
|
+}
|
|
|
+
|
|
|
+#navigation .navbar-nav .signup-link {
|
|
|
+ padding: 8px 18px 8px 18px;
|
|
|
+ margin: 13px 10px 13px 10px;
|
|
|
+ text-decoration: none;
|
|
|
+ color: white;
|
|
|
+ font-size: 1.5rem;
|
|
|
+ font-weight: 400;
|
|
|
+ border: 1px solid #EA5413;
|
|
|
+ border-radius: 3rem;
|
|
|
+ background-color: #EA5413;
|
|
|
+}
|
|
|
+
|
|
|
+#navigation .navbar-nav .signup-link:hover, #navigation .navbar-nav .signup-link:focus {
|
|
|
+ background-color: #EA5413;
|
|
|
+}
|
|
|
+
|
|
|
+/* sec-hero */
|
|
|
+.sec-hero {
|
|
|
+ padding: 6rem 0;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-hero .hero-title {
|
|
|
+ font-size: 3.5rem;
|
|
|
+ letter-spacing: 1px;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-hero .hero-txt {
|
|
|
+ font-size: 1.8rem;
|
|
|
+ letter-spacing: 1px;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-hero .hero-btn {
|
|
|
+ border: none;
|
|
|
+ outline: none;
|
|
|
+ border-radius: 3rem;
|
|
|
+ margin-top: 2rem;
|
|
|
+ padding: 1rem 2.5rem;
|
|
|
+ background: linear-gradient(20deg, #EA5413, #920783);
|
|
|
+ color: white;
|
|
|
+ font-size: 1.8rem;
|
|
|
+ box-shadow: 1px 1px 5px 1px rgba(207, 207, 207, 0.534);
|
|
|
+}
|
|
|
+
|
|
|
+/* sec-usecase */
|
|
|
+.sec-usecase {
|
|
|
+ padding: 3rem 0;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-usecase::after {
|
|
|
+ content: " ";
|
|
|
+ position: absolute;
|
|
|
+ bottom: 0;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ height: 40%;
|
|
|
+ width: 100%;
|
|
|
+ background-color: #FFEBE2;
|
|
|
+ z-index: -1;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-usecase .usecase-title {
|
|
|
+ font-size: 3rem;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-usecase .usecase-sub {
|
|
|
+ font-size: 1.8rem;
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-usecase .usecase-block {
|
|
|
+ padding: 0 1rem;
|
|
|
+ z-index: 3;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-usecase .usecase-imgfr {
|
|
|
+ width: 100%;
|
|
|
+ height: 25rem;
|
|
|
+ border-radius: 3px;
|
|
|
+ box-shadow: 0 3px 11px 3px rgba(192, 192, 192, 0.637);
|
|
|
+}
|
|
|
+
|
|
|
+.sec-usecase .usecase-imgfr img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+/* sec-steps */
|
|
|
+.sec-steps {
|
|
|
+ padding: 6rem 0;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-steps .steps-title {
|
|
|
+ font-size: 3rem;
|
|
|
+ text-align: center;
|
|
|
+ letter-spacing: 1px;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-steps .steps-title strong {
|
|
|
+ font-size: 5rem;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-steps .steps-block {
|
|
|
+ padding: 0 1rem;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-steps .steps-block::after {
|
|
|
+ position: absolute;
|
|
|
+ bottom: -1rem;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 15rem;
|
|
|
+ background-color: #FFEBE2;
|
|
|
+ content: " ";
|
|
|
+ z-index: -1;
|
|
|
+ border-radius: 2rem;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-steps .steps-imgfr {
|
|
|
+ width: 100%;
|
|
|
+ height: 22rem;
|
|
|
+ border-radius: 3px;
|
|
|
+ box-shadow: 0 3px 11px 3px rgba(192, 192, 192, 0.637);
|
|
|
+}
|
|
|
+
|
|
|
+.sec-steps .steps-imgfr img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-steps .steps-txt {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-steps .steps-txt span {
|
|
|
+ display: inline-block;
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+ background-color: #EA5413;
|
|
|
+ color: white;
|
|
|
+ font-size: 2.5rem;
|
|
|
+ line-height: 40px;
|
|
|
+ border-radius: 50%;
|
|
|
+ text-align: center;
|
|
|
+ margin-right: 1rem;
|
|
|
+}
|
|
|
+
|
|
|
+/* sec-features */
|
|
|
+
|
|
|
+.sec-features {
|
|
|
+ padding: 5rem 0;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-features .features-col {
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-features .features-col .features-block {
|
|
|
+ position: absolute;
|
|
|
+ left: 10rem;
|
|
|
+ top: 15rem;
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-features .features-num {
|
|
|
+ display: inline-block;
|
|
|
+ font-size: 12rem;
|
|
|
+ color: #F0F0F0;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-features .features-title {
|
|
|
+ font-size: 3rem;
|
|
|
+ text-align: center;
|
|
|
+ letter-spacing: 1px;
|
|
|
+ padding-bottom: 6px;
|
|
|
+ border-bottom: 8px solid #EA5413;
|
|
|
+ display: inline-block;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-features .features-title strong {
|
|
|
+ font-size: 5rem;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-features .features-imgfr {
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-features .features-imgfr img {
|
|
|
+ width: 100%;
|
|
|
+}
|
|
|
+
|
|
|
+.sec-features .features-list {
|
|
|
+ text-align: left;
|
|
|
+}
|
|
|
+
|
|
|
+.blog-tabs {
|
|
|
+ display: flex;
|
|
|
+}
|
|
|
+
|
|
|
+.blog-tabs .blog-tabs-nav {
|
|
|
+ width: 35%;
|
|
|
+ background-color: #F0F0F0;
|
|
|
+ padding: 4rem 1.5rem;
|
|
|
+ list-style: none;
|
|
|
+}
|
|
|
+
|
|
|
+.blog-tabs .blog-tabs-nav li {
|
|
|
+ padding: 10px;
|
|
|
+ border-bottom: 1px dashed grey;
|
|
|
+}
|
|
|
+.blog-tabs .blog-tabs-nav li a {
|
|
|
+ color: #EA5413;
|
|
|
+}
|
|
|
+
|
|
|
+.blog-tabs .blog-tabs-stage {
|
|
|
+ width: 65%;
|
|
|
+ padding: 3.5rem;
|
|
|
+ padding-bottom: 8rem;
|
|
|
+ box-shadow: 1px 1px 10px 2px grey;
|
|
|
+ height: 40rem;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.blog-tab-box {
|
|
|
+ height: 95%;
|
|
|
+ overflow: scroll;
|
|
|
+}
|
|
|
+
|
|
|
+.btn-light {
|
|
|
+ color: black;
|
|
|
+ border: 1px solid #EA5413;
|
|
|
+ padding: 1rem 2.5rem;
|
|
|
+ outline: none;
|
|
|
+ background-color: white;
|
|
|
+ margin-top: 4rem;
|
|
|
+ border-radius: 3rem;
|
|
|
+ font-size: 1.8rem;
|
|
|
+ box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
|
|
|
+}
|
|
|
+
|
|
|
+.btn-dark {
|
|
|
+ color: white;
|
|
|
+ border: 1px solid #EA5413;
|
|
|
+ padding: 1rem 2.5rem;
|
|
|
+ outline: none;
|
|
|
+ background-color: #EA5413;
|
|
|
+ margin-top: 4rem;
|
|
|
+ border-radius: 3rem;
|
|
|
+ font-size: 1.8rem;
|
|
|
+ box-shadow: 1px 1px 5px 1px rgba(201, 201, 201, 0.637);
|
|
|
+}
|
|
|
+
|
|
|
+.blog-tabs .btn-light {
|
|
|
+ margin-top: 1.5rem;
|
|
|
+}
|
|
|
+
|
|
|
#content .container {
|
|
|
margin-top: 50px;
|
|
|
}
|