123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363 |
- // banner
- .banner {
- min-height: 50vh;
- padding: 100px 0 100px;
- background: linear-gradient(105deg, rgba(255, 255, 255, 0.438) 0%, rgba(255, 255, 255, 0.5) 100%, transparent 100%), url('https://images.unsplash.com/photo-1526628953301-3e589a6a8b74?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=2947&q=80');
- background-size: cover;
- &__p {
- color: $body-color;
- text-shadow: 1px 1px grey;
- font-weight: 400;
- }
- }
- .feature-card {
- border-radius: 10px;
- padding: 20px;
- transition: .2s ease;
- background-color: $white;
- &:hover {
- @extend .shadow;
- }
- i {
- font-size: 30px;
- color: $primary-color;
- display: inline-block;
- }
- }
- .footer-list a {
- display: block;
- padding: 5px 0;
- font-size: 16px;
- color: $text-color;
- margin: 8px 0;
- &:hover {
- color: $primary-color;
- }
- }
- .social-icons a {
- color: $primary-color;
- text-align: center;
- height: 35px;
- width: 35px;
- line-height: 35px;
- border: 1px solid $primary-color;
- border-radius: 50%;
- display: block;
- &:hover {
- color: $white;
- background-color: $primary-color;
- }
- }
- // blog post
- a.post-title {
- color: $text-color-dark;
- display: block;
- &:hover {
- color: $primary-color;
- }
- }
- .content {
- * {
- word-break: break-word;
- overflow-wrap: break-word;
- margin-bottom: 20px;
- }
- img {
- max-width: 100%;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- margin-bottom: 15px;
- }
- strong {
- font-weight: 600;
- }
- a {
- color: $text-color;
- border-bottom: 1px dotted $border-color;
- &:hover {
- color: $primary-color;
- }
- }
- ol,
- ul {
- padding-left: 20px;
- li {
- margin-bottom: 10px;
- }
- }
- ul {
- padding-left: 0;
- margin-bottom: 20px;
- list-style-type: none;
- li {
- padding-left: 20px;
- position: relative;
- &::before {
- position: absolute;
- content: '';
- height: 8px;
- width: 8px;
- border-radius: 50%;
- background: $primary-color;
- left: 3px;
- top: 5px;
- }
- }
- }
- table {
- width: 100%;
- max-width: 100%;
- margin-bottom: 1rem;
- border: 1px solid $border-color;
- }
- table td,
- table th {
- padding: .75rem;
- vertical-align: top;
- margin-bottom: 0;
- }
- th,
- td {
- &:not(:last-of-type) {
- border-right: 1px solid $border-color;
- }
- }
- th {
- font-weight: 500;
- }
- thead {
- background: $white;
- margin-bottom: 0;
- tr {
- border-bottom: 1px solid $border-color;
- }
- }
- tbody {
- background-color: transparent;
- margin-bottom: 0;
- }
- .notices {
- margin: 2rem 0;
- position: relative;
- overflow: hidden;
- }
- .notices p {
- padding: 10px;
- margin-bottom: 0;
- }
- .notices p::before {
- position: absolute;
- top: 2px;
- color: $white;
- font-family: "themify";
- font-weight: 900;
- content: "\e717";
- left: 10px;
- }
- .notices.note p {
- border-top: 30px solid #6ab0de;
- background: $white;
- }
- .notices.note p::after {
- content: 'Note';
- position: absolute;
- top: 2px;
- color: $white;
- left: 2rem;
- }
- .notices.tip p {
- border-top: 30px solid #78C578;
- background: $white;
- }
- .notices.tip p::after {
- content: 'Tip';
- position: absolute;
- top: 2px;
- color: $white;
- left: 2rem;
- }
- .notices.info p {
- border-top: 30px solid #F0B37E;
- background: $white;
- }
- .notices.info p::after {
- content: 'Info';
- position: absolute;
- top: 2px;
- color: $white;
- left: 2rem;
- }
- .notices.warning p {
- border-top: 30px solid #E06F6C;
- background: $white;
- }
- .notices.warning p::after {
- content: 'Warning';
- position: absolute;
- top: 2px;
- color: #fff;
- left: 2rem;
- }
- blockquote {
- font-size: 20px !important;
- color: $text-color;
- padding: 20px 40px;
- border-left: 2px solid $primary-color;
- margin: 40px 0;
- font-weight: bold;
- background: $white;
- p {
- margin-bottom: 0 !important;
- }
- }
- pre {
- display: block;
- padding: 9.5px;
- margin: 10px 0px 10px;
- white-space: pre-wrap;
- }
- code {
- margin-bottom: 0 !important;
- font-size: 100%;
- }
- }
- // pagination
- .pagination {
- margin-top: 30px;
- justify-content: center;
- .page-item {
- .page-link {
- display: inline-block;
- width: 40px;
- height: 40px;
- line-height: 40px;
- border-radius: 5px;
- background: $light;
- text-align: center;
- padding: 0;
- margin-right: 10px;
- border: 0;
- color: $text-color;
- &:hover {
- background: $primary-color;
- color: $white;
- }
- &:focus {
- box-shadow: none;
- }
- }
- &:first-child,
- &:last-child {
- .page-link {
- border-radius: 5px;
- }
- }
- &.active {
- .page-link {
- background: $primary-color;
- color: $white;
- }
- }
- }
- }
- .slick-dots {
- text-align: center;
- margin-top: 20px;
- li {
- display: inline-block;
- margin: 0 5px;
- &.slick-active {
- button {
- background-color: $primary-color;
- }
- }
- button {
- height: 10px;
- width: 10px;
- border-radius: 50%;
- display: block;
- color: transparent;
- padding: 0;
- border: 1px solid $primary-color;
- background-color: transparent;
- transition: .2s ease;
- }
- }
- }
- // pricing table
- .col-recommended {
- margin: -2rem -1.5rem;
- z-index: 1;
- @include desktop {
- margin: 0;
- margin-bottom: 40px;
- }
- }
- .price{
- font-size: 50px;
- color: $text-color-dark;
- }
|