1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171 |
- // ++++ 變數設定 ++++
- $main-ft: 'Microsoft JhengHei', Helvetica, Noto Sans TC, Roboto, Arial, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
- $main-font-color: #727679;
- $title-color: #43484C;
- $main-deco-color: #EE7800;
- $btn-color: rgba(238, 120, 0, 0.7);
- $btn-hover-color: rgba(238, 120, 0, 1);
- // ++++ Mixin ++++
- @mixin roundCorner {
- border-radius: 0.1875rem;
- }
- @mixin bgImage {
- background-repeat: no-repeat;
- background-position: center center;
- }
- // ++++ 共用css ++++
- *,
- *::before,
- *::after {
- box-sizing: border-box;
- }
- a {
- color: $main-font-color;
- font-family: $main-ft;
- font-size: 1rem;
- &:hover, &:active {
- text-decoration: none;
- }
- }
- body {
- background-color: #F6F6F6;
- position: relative;
- }
- ul {
- padding-inline-start: 0;
- }
- .shadow-decoQuery {
- box-shadow: 0 2px 10px rgba(0,0,0,0.1);
- }
- .border-divider {
- border-left: 1px solid #EFEFEF;
- }
- .btn:focus {
- &:focus {
- outline: 0;
- box-shadow: none;
- }
- }
- .avatar {
- width: 100px;
- height: 100px;
- border-radius: 50%;
- background-size: cover;
- @include bgImage();
- cursor: pointer;
- transition: all 300ms ease-in-out;
- &--xl {
- width: 150px;
- height: 150px;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- width: 100px;
- height: 100px;
- }
- }
- }
- .caseBgImage {
- height: 232px;
- background-size: cover;
- @include bgImage();
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- height: 110px;
- }
- }
- :focus {
- outline: transparent auto 0 !important;
- border: none !important;
- }
- input {
- &:focus {
- outline: transparent auto 0 !important;
- border: none !important;
- }
- }
- .focus-status {
- &:focus {
- border-color: transparent;
- box-shadow: none;
- -webkit-appearance: none !important;
- -moz-appearance: none !important;
- appearance: none !important;
- }
- }
- //switcher
- .swicher {
- display: flex;
- justify-content: center;
- height: 52px;
- border-radius: 30px;
- position: relative;
- background: #AAA;
- color: #FFF;
- &__block {
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 30px;
- }
- &__items {
- cursor: pointer;
- width: calc(100%/3);
- height: 100%;
- text-align: center;
- align-items: center;
- display: flex;
- justify-content: center;
- border-radius: 30px;
- a {
- color: #FFF;
- }
- &.active {
- height: 103%;
- color: #EE7800;
- border: 1px solid #FFF;
- background-color: #FFF;
- border-radius: 30px;
- font-weight: bold;
- box-shadow: 0 2px 10px rgba(0,0,0,0.1);
- a {
- color: $main-deco-color;
- }
- }
- }
- }
- // <!--[[[[[[[[[[[[[[[[[ nav ]]]]]]]]]]]]]]]]] -->
- nav {
- .nav-wrapper {
- display: flex;
- justify-content: center;
- padding: .45rem 0;
- }
- img {
- width: 120px;
- height: 50px;
- }
- // .arrow {
- // color: $bg-color;
- // padding:0 0 0 1.2rem;
- // }
- }
- .fixed {
- position: fixed;
- top: 0;
- right: 0;
- left: 0;
- z-index: 1030;
- background-color: #FFF;
- }
- // <!--[[[[[[[[[[[[[[[[[ title ]]]]]]]]]]]]]]]]] -->
- .title {
- margin-top: 30px;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- margin-top: 55px;
- }
- &__block {
- text-align: center;
- .h1 {
- color: $title-color;
- font-size: 2rem;
- font-weight: bold;
- padding: 1rem 0;
- line-height: 1.2;
- margin: 0;
- }
- .small {
- font-size: 1rem;
- color: #AAA;
- }
- }
- }
- // <!--[[[[[[[[[[[[[[[[[ 搜尋 ]]]]]]]]]]]]]]]]] -->
- .search {
- position: relative;
- .icon {
- position: absolute;
- top: 20%;
- right: 1%;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- right: 3%;
- }
- }
- img {
- width: 27px;
- height: 27px;
- }
- }
- .form-control {
- padding: 1.575rem 0.75rem;
- border: none;
- border-radius: 0.1875rem;
- &:focus {
- color: #495057;
- background-color: #fff;
- border: none !important;
- outline: 0;
- box-shadow: none;
- }
- }
- /*webkit瀏覽器專用*/
- .search ::-webkit-input-placeholder {
- color: #D4D4D4;
- }
- /*Firefox 4-18瀏覽器專用*/
- .search input::-moz-placeholder {
- color: #D4D4D4;
- }
- /*Firefox 19+瀏覽器專用*/
- .search input::-moz-placeholder {
- color: #D4D4D4;
- }
- /*IE10瀏覽器專用*/
- .search:-ms-input-placeholder {
- color: #D4D4D4;
- }
- // [[[[[[[[[[[[[[[[[ 縣市、區、街道 ]]]]]]]]]]]]]]]]]
- .topicSubitems {
- width: 100%;
- background-color: #FFF;
- text-align: center;
- @include roundCorner();
- box-shadow: 0 2px 10px rgba(0,0,0,0.1);
- a {
- color: #909090;
- padding: 1.2rem 0;
- display: inline-block;
- font-size: 1rem;
- }
- &:hover {
- cursor: pointer;
- box-shadow: none;
- a {
- color: #909090;
- }
- }
- &:visited,
- &:active,
- &.active {
- box-shadow: none;
- a {
- color: #909090;
- }
- }
- }
- // [[[[[[[[[[[[[[[[[ 縣市選擇--4欄 ]]]]]]]]]]]]]]]]]
- .county {
- display: flex;
- justify-content: start;
- flex-wrap: wrap;
- a {
- color: #909090;
- padding: 1.2rem 0;
- display: inline-block;
- font-size: 1rem;
- }
- &__items {
- width: 23%;
- text-align: center;
- margin-right: 2%;
- background-color: #FFF;
- @include roundCorner();
- box-shadow: 0 2px 10px rgba(0,0,0,0.1);
- &:hover {
- cursor: pointer;
- box-shadow: none;
- a {
- color: #909090;
- }
- }
- &:visited,
- &:active,
- &.active {
- box-shadow: none;
- a {
- color: #909090;
- }
- }
- }
- }
- // [[[[[[[[[[[[[[[[[ 各鄉鎮市區--3欄 ]]]]]]]]]]]]]]]]]
- .district {
- display: flex;
- justify-content: start;
- flex-wrap: wrap;
- a {
- color: #909090;
- padding: 1.2rem 0;
- display: inline-block;
- font-size: 1rem;
- }
- &__items {
- width: 31.3333%;
- text-align: center;
- margin-right: 2%;
- margin-bottom:.5rem;
- background-color: #FFF;
- @include roundCorner();
- box-shadow: 0 2px 10px rgba(0,0,0,0.1);
- &:hover {
- cursor: pointer;
- box-shadow: none;
- a {
- color: #909090;
- }
- }
- &:visited,
- &:active,
- &.active {
- box-shadow: none;
- a {
- color: #909090;
- }
- }
- }
- }
- // [[[[[[[[[[[[[[[[[ 各街道--2欄 ]]]]]]]]]]]]]]]]]
- .street {
- display: flex;
- justify-content: start;
- flex-wrap: wrap;
- a {
- color: #909090;
- padding: 1.2rem 0;
- display: inline-block;
- font-size: 1rem;
- }
- &__items {
- width: 48%;
- margin-right: 2%;
- margin-bottom:.5rem;
- text-align: center;
- background-color: #FFF;
- @include roundCorner();
- box-shadow: 0 2px 10px rgba(0,0,0,0.1);
- &:hover {
- cursor: pointer;
- box-shadow: none;
- a {
- color: #909090;
- }
- }
- &:visited,
- &:active,
- &.active {
- box-shadow: none;
- a {
- color: #909090;
- }
- }
- }
- }
- // [[[[[[[[[[[[[[[[[ 各縣市筆數 ]]]]]]]]]]]]]]]]]
- .countiesNum {
- width: 100%;
- text-align: center;
- border-bottom: 1px solid #43484C;
- a {
- color: #43484C;
- padding: 1.2rem 0;
- display: inline-block;
- font-family: $main-ft;
- }
- }
- .countiesNumCity {
- width: 48%;
- text-align: center;
- line-height: 2;
- color: #43484C;
- &__items {
- display: flex;
- margin: 0 1rem;
- padding: .3rem 0;
- border-bottom: 1px solid #dbdbdb;
- font-family: $main-ft;
- &__lf {
- width: 50%;
- }
- }
-
- }
- .countiesNumLine {
- width: 2%;
- justify-content: center;
- align-items: center;
- padding: .8rem .2rem;
- .line {
- height: 100%;
- border-left: 1px solid #dbdbdb;
- }
-
- }
- // <!--[[[[[[[[[[[[[[[[[ 選擇縣市、區域、路段後的結果 ]]]]]]]]]]]]]]]]] -->
- .list{
-
- &__title {
- h4 {
- color: $title-color;
- font-weight: bold;
- min-height: 56px;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- font-size: 1.125rem;
- margin-bottom: 0;
- }
- }
- &__approve {
- color: $main-deco-color;
- font-size: 0.95rem;
- font-weight: bold;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- font-size: 0.95rem;
- }
- }
- }
- &__img {
- margin: 0 0 0 3rem;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- margin: 0 0 0 1rem;
- }
- }
- &__context {
- color: $main-font-color;
- font-size: 0.875rem;
- a {
- &:hover {
- color: $main-font-color;
- }
- }
- }
- &__tel {
- color: $title-color;
- font-size: 1.125rem;
- font-weight: 600;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- font-size: 0.875rem;
- text-align: left;
- }
- &--empty {
- min-height: 70px;
- visibility: visible;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- min-height: 35px;
- }
- }
- a {
- color: $main-deco-color;
- font-size: 1.5rem;
- font-weight: bold;
- line-height: 1.2;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- font-size: 1.125rem;
- }
- }
- }
- &__btn {
- a {
- color: $btn-color;
- font-size: 1rem;
- font-weight: 600;
- border: 1px solid $btn-color;
- border-radius: 8px;
- padding: 0.8rem 0.75rem;
- background-color: #FFF;
- transition: all 300ms ease-in-out;
- &:hover {
- color: $btn-hover-color;
- border: 1px solid $btn-hover-color;
- }
- &:focus {
- border: 1px solid $btn-color !important;
- }
- }
- }
- &__btn2 {
- a {
- color: #B0B0B0;
- font-size: 1rem;
- font-weight: 600;
- border: 1px solid #B0B0B0;
- border-radius: 8px;
- padding: 0.8rem 0.75rem;
- transition: all 300ms ease-in-out;
- &:hover {
- color: $btn-hover-color;
- border: 1px solid $btn-hover-color;
- }
- &:focus {
- border: 1px solid $btn-color !important;
- }
- }
- }
- }
- .fa-xl {
- @media screen and(max-width: 576px) {
- font-size: 1em;
- }
- }
- //Swiper
- .swiper-button-prev:after{
- content:'' !important;
- width: 23px;
- height: 40px;
- background: url("../images/icon/btn-prev.png") no-repeat ;
- background-position: center;
- display: inline-block;
- }
- .swiper-button-next:after{
- content:'' !important;
- width: 23px;
- height: 40px;
- background: url("../images/icon/btn-next.png") no-repeat ;
- background-position: center;
- display: inline-block;
- }
- @media screen and(max-width: 576px) {
- .swiper-wrapper, .swiper-slide {
- height: 110px !important;
- }
- }
- // <!--[[[[[[[[[[[[[[[[[ Pagination ]]]]]]]]]]]]]]]]] -->
- .pagination{
- display: flex;
- padding-left: 0;
- list-style: none;
- border-radius: 0.25rem;
- .page-item {
- &.active {
- .page-link {
- color: #fff;
- background-color: $main-deco-color;
- border-color: #dee2e6;
- }
- }
- }
- .page-link{
- font-family: $main-ft;
- position: relative;
- display: block;
- padding: 0.5rem 0.75rem;
- margin-left: -1px;
- line-height: 1.25;
- color: #727679;
- background-color: #fff;
- border: 1px solid #FFF;
- &:hover {
- z-index: 2;
- color: #fff;
- text-decoration: none;
- background-color: #EE7800;
- border-color: #dee2e6;
- }
- }
- .page-link-arrow{
- position: relative;
- display: block;
- padding: 0.5rem 0.75rem;
- line-height: 1.25;
- color: #727679;
- background-color: #fff;
- border: 1px solid #fff;
- &:hover{
- text-decoration: none;
- }
- }
- .page-arrow {
- padding: 0.5rem 0;
- }
- }
- // <!--[[[[[[[[[[[[[[[[[ 公司搜尋結果(左區塊、右地圖)]]]]]]]]]]]]]]]]] -->
- .cyResult {
- &__context {
- h4 {
- color: $title-color;
- font-weight: bold;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- font-size: 1.125rem;
- }
- }
- }
- ul {
- color: $main-font-color;
- font-size: 0.875rem;
- span {
- color: $title-color;
- font-weight: bold;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- font-weight: normal;
- }
- }
- }
- &__more {
- padding: 2rem 1rem;
- cursor: pointer;
- text-align: center;
- color: #D4D4D4;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- padding: 1rem 0;
- text-align: left;
- font-size: 0.875rem;
- }
- &.is-hidden {
- display: none;
- }
- }
- &__otherInfo {
- margin: 0 0 1.5rem 0;
- display: none;
- &.is-open {
- display: block;
- }
- }
- &__img {
- margin: 0 0 0 1.5rem;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- margin: 0 0 0 0.5rem;
- }
- }
- &__collection {
- display: flex;
- justify-content: space-between;
- align-items: center;
- text-align: center;
- cursor: pointer;
- width: 100%;
- &__bgImg {
- height: 150px;
- background-repeat: no-repeat;
- background-size: cover;
- background-position: center center;
- width: 48%;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- height: 110px;
- }
- }
- }
- }
- .cyCard {
- display: flex;
- margin: 1.5rem 0 0 0;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- margin: 0 0 1.5rem 0;
- }
- &__leader {
- width: 35%;
- max-width: 35%;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- width: 40%;
- max-width: 40%;
- }
- h6 {
- color: $title-color;
- font-size: 1.125rem;
- font-weight: bold;
- margin: 0;
- }
- > div {
- color: $main-font-color;
- font-size: 0.875rem;
- }
- &--3col {
- width: 30%;
- max-width: 25%;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- width: 40%;
- max-width: 40%;
- padding: 0 1rem 0 0;
- }
- }
- }
- &__info {
- width: 65%;
- max-width: 65%;
- padding: 0 0 0 1rem;
- border-left: 1px solid #EFEFEF;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- width: 60%;
- max-width: 60%;
- }
- &--3col {
- width: 45%;
- max-width: 40%;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- width: 60%;
- max-width: 60%;
- font-size: 0.875rem;
- }
- }
- > div {
- color: $main-deco-color;
- font-weight: bold;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- font-size: 0.875rem;
- }
- }
- }
- &__name {
- color: $main-deco-color;
- font-weight: bold;
- padding: 0 0 0 1rem;
- border-left: 1px solid #EFEFEF;
- &--3col {
- width: 100%;
- max-width: 100%;
- border-left: none;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- padding: 0;
- font-size: 0.875rem;
- }
- }
- }
- ul {
- color: $main-font-color;
- font-size: 0.875rem;
- span {
- color: $title-color;
- font-weight: bold;
- }
- }
- a {
- color: $main-deco-color;
- &:hover {
- color: inherit;
- }
- }
- }
- .cyBtn {
- @media screen and(max-width: 576px) {
- width: 94%;
- position: fixed;
- z-index: 1025;
- bottom: 0;
- background: linear-gradient(180deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.75) 100%);
- padding: 1rem 2.55rem;
- }
- a {
- color: $btn-color;
- font-size: 1rem;
- font-weight: 600;
- border: 1px solid $btn-color;
- border-radius: 8px;
- padding: 0.8rem 0.75rem;
- background-color: #FFF;
- transition: all 300ms ease-in-out;
- &:hover {
- color: $btn-hover-color;
- border: 1px solid $btn-hover-color;
- }
- }
- }
- .map {
- iframe {
- height: 670px;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- height: 340px;
- }
- }
- }
- // <!--[[[[[[[[[[[[[[[[[ 表單 ]]]]]]]]]]]]]]]]] -->
- .lsForm {
- &__item {
- &:not(:first-child) {
- margin: 1.5rem 0 0 0;
- }
- }
- select {
- color: #909090;
- height: unset;
- padding: 0.825rem 0.75rem;
- &.form-control:focus {
- color: #909090;
- }
- }
- }
- /*webkit瀏覽器專用*/
- .lsForm__item ::-webkit-input-placeholder {
- color: #909090;
- font-size: 1rem;
- }
- /*Firefox 4-18瀏覽器專用*/
- .lsForm__item input::-moz-placeholder {
- color: #909090;
- font-size: 1rem;
- }
- /*Firefox 19+瀏覽器專用*/
- .lsForm__item input::-moz-placeholder {
- color: #909090;
- font-size: 1rem;
- }
- /*IE10瀏覽器專用*/
- .lsForm__item:-ms-input-placeholder {
- color: #909090;
- font-size: 1rem;
- }
- .pretty-select {
- /*移除箭頭樣式*/
- appearance:none;
- -moz-appearance:none;
- -webkit-appearance:none;
- /*改變右邊箭頭樣式*/
- background: url("../../images/icon/form-arrow.png") right 10px center transparent;
- background-repeat: no-repeat;
- background-size: 20px 20px;
- background-color:#FFF;
- }
- .error {
- text-align: right;
- color: #dc3545 ;
- font-size: 80%;
- }
- // <!--[[[[[[[[[[[[[[[[[ 上傳 Logo 與個案 ]]]]]]]]]]]]]]]]] -->
- .uploadLogo {
- &__note {
- text-align: center;
- color: $main-font-color;
- font-size: 0.875rem;
- }
- &__msg {
- color: #B0B0B0;
- text-align: center;
- border: 1px solid #B0B0B0;
- border-radius: 8px;
- padding: 0.775rem 0.75rem;
- }
- }
- .caseUploadBgImg {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- cursor: pointer;
- > div {
- width: 48%;
- }
- &__bgImg {
- height: 180px;
- background-repeat: no-repeat;
- background-size: cover;
- background-position: center center;
- width: 100%;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- height: 110px;
- }
- }
- }
- .progress {
- height: 0.5rem;
- .progress-bar {
- width: 0%;
- background-color: $main-deco-color;
- }
- }
- .progress-transition {
- transition: width 6s ease-in-out;
- }
- // <!--[[[[[[[[[[[[[[[[[ 免責聲明與隱私使用政策 ]]]]]]]]]]]]]]]]] -->
- .agreeForm {
- &__btn {
- padding: 0 1.2rem;
- a {
- color: $btn-color;
- font-size: 1rem;
- font-weight: 600;
- border: 1px solid $btn-color;
- border-radius: 8px;
- padding: 0.8rem 0.75rem;
- background-color: #FFF;
- transition: all 300ms ease-in-out;
- &:hover {
- color: $btn-hover-color;
- border: 1px solid $btn-hover-color;
- }
- }
- }
- }
- .custom-checkbox {
- font-size: 0.875rem;
- text-align: center;
- .custom-control-label {
- line-height: 1.7;
- }
- a {
- color: $main-deco-color;
- font-size: 100%;
- }
- }
- .custom-control-input:checked~.custom-control-label::before {
- color: #fff;
- border-color: #DE945C;
- background-color: #DE945C;
- }
- // Modal
- .modal-body {
- text-align: center;
- color: $main-font-color;
- h4 {
- font-weight: bold;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- font-size: 1.125rem;
- }
- }
- p {
- font-size: 0.875rem;
- }
- .modal-fail-btn {
- display: flex;
- justify-content: space-around;
- a {
- width: 45%;
- font-size: 1rem;
- }
- .btn-back {
- color: #FFF;
- background-color: #AAAAAA;
- }
- .btn-restart {
- color: $main-deco-color;
- border: 1px solid $main-deco-color;
- }
- }
- .modal-btn {
- padding: 0 2.5rem;
- a {
- color: $btn-color;
- font-size: 1rem;
- font-weight: 600;
- border: 1px solid $btn-color;
- border-radius: 8px;
- padding: 0.45rem 0.75rem;
- background-color: #FFF;
- transition: all 300ms ease-in-out;
- &:hover {
- color: $btn-hover-color;
- border: 1px solid $btn-hover-color;
- }
- }
- }
- }
- // <!--[[[[[[[[[[[[[[[[[ footer ]]]]]]]]]]]]]]]]] -->
- .footer {
- font-size: 0.9rem;
- color: $main-font-color;
- background-color: #eee;
- text-align: center;
- display: flex;
- justify-content: center;
- position: relative;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- &--mb {
- margin-bottom: 5rem;
- }
- }
- &__block {
- padding: 2rem 1rem;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- // padding: 1rem 1rem 1.9rem 1rem;
- padding: 2rem 1rem;
- }
- }
- a {
- font-size: 0.9rem;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- font-size: 0.8rem;
- }
- &:hover {
- color: $main-font-color;
- }
- }
- }
- .gotop-btn-wrapper {
- display: block;
- position: fixed;
- right: 20px;
- bottom: 40px;
- cursor: pointer;
- z-index: 1026;
- transition: all 300ms ease-in-out;
- @media screen and(max-width: 576px) {
- bottom: 75px;
- }
- .gotop-btn {
- width: 50px;
- height: 50px;
- box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
- opacity: 1;
- display: none;
- &:hover,
- &:active,
- &:focus {
- box-shadow: 5px 3px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
- }
- }
- }
- [v-cloak] {
- display: none;
- }
|