Clock.wxss 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. /*!*************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  2. !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[4]!./src/pages/index/index.scss ***!
  3. \*************************************************************************************************************************************************************************************************************************************************************************************************************************/
  4. .canvas-container {
  5. width: 100%;
  6. height: 500rpx;
  7. }
  8. .demo {
  9. width: 749rpx;
  10. height: 30rpx;
  11. background-color: aqua;
  12. }
  13. .login {
  14. color: red;
  15. }
  16. /*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  17. !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[4]!./node_modules/taro-ui/dist/style/components/float-layout.scss ***!
  18. \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
  19. @charset "UTF-8";
  20. /**
  21. * Default variables
  22. */
  23. /**
  24. * Mixes a color with white. It's different from lighten()
  25. *
  26. * @param {color} $color
  27. * @param {number (percentage)} $percent [The amout of white to be mixed in]
  28. * @return {color}
  29. *
  30. * @example
  31. * .element {
  32. * background-color: tint(#6ecaa6 , 40%);
  33. * }
  34. *
  35. * // CSS Output
  36. * .element {
  37. * background-color: #a8dfc9;
  38. * }
  39. */
  40. /* The Color of O2Team Brand */
  41. /* Color */
  42. /* Color Palette */
  43. /* Text Color */
  44. /* Link */
  45. /* 背景色 */
  46. /* 边框颜色 */
  47. /* 图标颜色 */
  48. /* Border Radius */
  49. /* 透明度 */
  50. /* Font */
  51. /* Line Height */
  52. /* 水平间距 */
  53. /* 垂直间距 */
  54. /* 图标尺寸 */
  55. /* z-index */
  56. /* timing function */
  57. /**
  58. * CSS cubic-bezier timing functions
  59. * http://bourbon.io/docs/#timing-functions
  60. */
  61. /**
  62. * 组件变量
  63. */
  64. /* Accordion */
  65. /* Activity Indicator */
  66. /* Avatar */
  67. /* Badge */
  68. /* Button */
  69. /* Float Button */
  70. /* Calendar */
  71. /* Card */
  72. /* Checkbox */
  73. /* Countdown */
  74. /* Curtain */
  75. /* Divider */
  76. /* Drawer */
  77. /* FloatLayout */
  78. /* Grid */
  79. /* ImagePicker */
  80. /* Indexes */
  81. /* InputNumber */
  82. /* Input */
  83. /* List */
  84. /* LoadMore */
  85. /* Loading */
  86. /* Message */
  87. /* Modal */
  88. /* NavBar */
  89. /* NoticeBar */
  90. /* Pagination */
  91. /* Progress */
  92. /* Radio */
  93. /* Range */
  94. /* Rate */
  95. /* SearchBar */
  96. /* SegmentedControl */
  97. /* Slider */
  98. /* Steps */
  99. /* SwipeAction */
  100. /* Switch */
  101. /* TabBar */
  102. /* Tabs */
  103. /* Tag */
  104. /* Textarea */
  105. /* Timeline */
  106. /**
  107. * Mixins
  108. */
  109. /* library */
  110. /**
  111. * 元素居中定位
  112. */
  113. /**
  114. * @example scss
  115. *
  116. * .element {
  117. * @include clearfix;
  118. * }
  119. *
  120. * // CSS Output
  121. * .element::after {
  122. * clear: both;
  123. * content: '';
  124. * display: block;
  125. * }
  126. */
  127. /**
  128. * 通用的遮罩
  129. */
  130. /**
  131. * Mixes a color with black. It's different from darken()
  132. *
  133. * @param {color} $color
  134. * @param {number (percentage)} $percent [The amount of black to be mixed in]
  135. * @return {color}
  136. *
  137. * @example
  138. * .element {
  139. * background-color: shade(#ffbb52, 60%);
  140. * }
  141. *
  142. * // CSS Output
  143. * .element {
  144. * background-color: #664a20;
  145. * }
  146. */
  147. /**
  148. * Mixes a color with white. It's different from lighten()
  149. *
  150. * @param {color} $color
  151. * @param {number (percentage)} $percent [The amout of white to be mixed in]
  152. * @return {color}
  153. *
  154. * @example
  155. * .element {
  156. * background-color: tint(#6ecaa6 , 40%);
  157. * }
  158. *
  159. * // CSS Output
  160. * .element {
  161. * background-color: #a8dfc9;
  162. * }
  163. */
  164. /* Flex Item */
  165. /**
  166. * 默认主题下 $color-border-light
  167. */
  168. /**
  169. * 点击态
  170. */
  171. /**
  172. * 禁止态
  173. */
  174. /**
  175. * 设置placeholder 颜色
  176. */
  177. /**
  178. * 默认主题下 $color-border-light
  179. */
  180. .at-float-layout {
  181. position: fixed;
  182. width: 100%;
  183. height: 100%;
  184. top: 0;
  185. left: 0;
  186. visibility: hidden;
  187. z-index: 810;
  188. -webkit-transition: visibility 300ms cubic-bezier(0.36, 0.66, 0.04, 1);
  189. transition: visibility 300ms cubic-bezier(0.36, 0.66, 0.04, 1);
  190. /* elements */
  191. /* modifiers */
  192. }
  193. .at-float-layout__overlay {
  194. top: 0;
  195. left: 0;
  196. width: 100%;
  197. height: 100%;
  198. position: absolute;
  199. background-color: rgba(0, 0, 0, 0.3);
  200. opacity: 0;
  201. -webkit-transition: opacity 150ms ease-in;
  202. transition: opacity 150ms ease-in;
  203. }
  204. .at-float-layout__container {
  205. position: absolute;
  206. bottom: 0;
  207. width: 100%;
  208. min-height: 600rpx;
  209. max-height: 950rpx;
  210. background-color: #FFF;
  211. -webkit-transform: translate3d(0, 100%, 0);
  212. transform: translate3d(0, 100%, 0);
  213. -webkit-transition: -webkit-transform 300ms cubic-bezier(0.36, 0.66, 0.04, 1);
  214. transition: -webkit-transform 300ms cubic-bezier(0.36, 0.66, 0.04, 1);
  215. transition: transform 300ms cubic-bezier(0.36, 0.66, 0.04, 1);
  216. transition: transform 300ms cubic-bezier(0.36, 0.66, 0.04, 1), -webkit-transform 300ms cubic-bezier(0.36, 0.66, 0.04, 1);
  217. }
  218. .at-float-layout .layout-header {
  219. position: relative;
  220. padding: 18rpx;
  221. line-height: 1.5;
  222. background-color: #F7F7F7;
  223. }
  224. .at-float-layout .layout-header__title {
  225. overflow: hidden;
  226. text-overflow: ellipsis;
  227. white-space: nowrap;
  228. color: #333;
  229. font-size: 32rpx;
  230. display: block;
  231. padding-right: 80rpx;
  232. }
  233. .at-float-layout .layout-header__btn-close {
  234. position: absolute;
  235. padding: 10rpx;
  236. top: 50%;
  237. right: 18rpx;
  238. width: 40rpx;
  239. height: 100%;
  240. line-height: 1;
  241. -webkit-transform: translate(0, -50%);
  242. -ms-transform: translate(0, -50%);
  243. transform: translate(0, -50%);
  244. }
  245. .at-float-layout .layout-header__btn-close::before, .at-float-layout .layout-header__btn-close::after {
  246. content: "";
  247. position: absolute;
  248. top: 50%;
  249. left: 50%;
  250. display: inline-block;
  251. width: 36rpx;
  252. height: 2PX;
  253. border-radius: 1PX;
  254. background: #CCC;
  255. }
  256. .at-float-layout .layout-header__btn-close::before {
  257. -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
  258. transform: translate3d(-50%, -50%, 0) rotate(45deg);
  259. }
  260. .at-float-layout .layout-header__btn-close::after {
  261. -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  262. transform: translate3d(-50%, -50%, 0) rotate(-45deg);
  263. }
  264. .at-float-layout .layout-body {
  265. font-size: 28rpx;
  266. padding: 18rpx;
  267. max-height: 828rpx;
  268. min-height: 514rpx;
  269. }
  270. .at-float-layout .layout-body__content {
  271. max-height: 798rpx;
  272. min-height: 484rpx;
  273. }
  274. .at-float-layout--active {
  275. visibility: visible;
  276. }
  277. .at-float-layout--active .at-float-layout__overlay {
  278. opacity: 1;
  279. }
  280. .at-float-layout--active .at-float-layout__container {
  281. -webkit-transform: translate3d(0, 0, 0);
  282. transform: translate3d(0, 0, 0);
  283. }