_utilities.scss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. $main-font-family:'Microsoft JhengHei', Helvetica,Noto Sans TC,Roboto,Arial,sans-serif;
  2. $photos-main-color:#6D6D6D;
  3. $photos-second-color:#EE7800;
  4. $light-gray:#9D9D9D;
  5. $photos-main-font-size:18px;
  6. $photos-second-font-size:14px;
  7. $photos-mob-main-font-size:16px;
  8. $photos-mob-second-font-size:12px;
  9. $photos-main-family:'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";
  10. //通用類別
  11. .bg-cover{
  12. background-size: cover;
  13. background-position: center center;
  14. }
  15. .bg-main{
  16. background-color: #FAFAFA;
  17. }
  18. .bg-white{
  19. background-color: #fff;
  20. }
  21. .bg-shadow{
  22. box-shadow: 0px 0px 5px #D1D2D3;
  23. }
  24. .no-padding{
  25. padding:0;
  26. }
  27. .no-border{
  28. border: none;
  29. }
  30. .circle-img{
  31. width:30px;
  32. height:30px;
  33. border-radius: 50%;
  34. border:1px solid black;
  35. }
  36. .accent-text{
  37. caret-color: #000;
  38. }
  39. .focus-status{
  40. &:focus{
  41. border-color: transparent;
  42. box-shadow: none;
  43. }
  44. }
  45. //目前圖庫卡片列表有使用
  46. .narrow-sm-gutter{
  47. padding-left:10px;
  48. padding-right:10px;
  49. }
  50. .wide-mg-gutter{
  51. padding: 0 20px;
  52. }
  53. //scroll-top btn
  54. .top-btn {
  55. z-index: 9;
  56. text-align: center;
  57. width: 50px;
  58. height: 50px;
  59. position: fixed;
  60. right: 20px;
  61. bottom: 30px;
  62. border-radius: 100px;
  63. line-height: 3;
  64. background-color: #EE7800;
  65. cursor: pointer;
  66. }
  67. //內容列表頁標題
  68. .list-head{
  69. font-weight: bold;
  70. font-size: 1.5rem;
  71. font-family: $main-font-family;
  72. }
  73. //關鍵字 autocomplete
  74. .keywords-autocomplete{
  75. width: 40%;
  76. z-index: 50;
  77. position: absolute;
  78. margin-left: auto;
  79. margin-right: auto;
  80. transform: translateY(-25%);
  81. //type 2
  82. .list-group-item{
  83. box-shadow: 1px 1px 1px #ccc ;
  84. }
  85. .list-group-item-action{
  86. &:hover{
  87. z-index: 0;
  88. }
  89. }
  90. .keywords-autocomplete-type{
  91. color: #EE7800;
  92. }
  93. }
  94. .keywords-autocomplete-tri::before{
  95. content:'';
  96. border: 0 solid transparent;
  97. border-right-width: 14px;
  98. border-left-width: 14px;
  99. border-bottom: 14px solid #e2e2e2;
  100. width: 0px;
  101. height: 0px;
  102. transform: translateY(20%);
  103. position: relative;
  104. left: 5%;
  105. }
  106. //列表 gotop btn
  107. .gotop-btn-wrapper{
  108. display: block;
  109. position: fixed;
  110. right: 1%;
  111. bottom: 4%;
  112. cursor: pointer;
  113. .gotop-btn{
  114. width: 50px;
  115. height: 50px;
  116. box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  117. opacity: 1;
  118. &:hover, &:focus, &:active{
  119. 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);
  120. }
  121. }
  122. }
  123. //圖庫 0800、隱私保護、關於本站、登出icon改成橘色
  124. .text-primary.text-photo-color{
  125. color: $photos-second-color !important;
  126. }
  127. //找靈感廣宣需求
  128. .text-promote-color{
  129. color: #EE7800 !important;
  130. &:active, &.active{
  131. background-color: transparent !important;
  132. border-bottom: 4px solid #EE7800 !important;
  133. @media screen and (max-width: 576px) {
  134. background-color: unset !important;
  135. border-bottom: 0 solid transparent !important;
  136. }
  137. }
  138. &:hover{
  139. color: #EE7800 !important;
  140. background-color: transparent !important;
  141. @media screen and (max-width: 576px) {
  142. background-color: #F4F4F4 !important;
  143. }
  144. }
  145. }
  146. .text-promote-mb-color{
  147. color: #EE7800 !important;
  148. }
  149. //fb訂閱按鈕
  150. .subscript-btn{
  151. display: flex;
  152. color: #FFF;
  153. background-color: #1977F3;
  154. border-radius:20px;
  155. padding: 5px 15px;
  156. .subscript-btn-circle{
  157. position: relative;
  158. width: 22px;
  159. height: 22px;
  160. border-radius: 50%;
  161. background-color: #FFF;
  162. margin-right: 5px;
  163. }
  164. .subscript-btn-img{
  165. position: absolute;
  166. bottom: 0;
  167. left: 28%;
  168. }
  169. }
  170. //另加
  171. [v-cloak] {
  172. display: none;
  173. }