-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.css
83 lines (78 loc) · 2.39 KB
/
variables.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
@charset "UTF-8";
/* stylelint-disable */
:root {
/*
* 红、绿、蓝色一般用于线条或 icon,如果要应用为文字则需要减少透明度10%,
* 如蓝色文字 color(var(--blue) l(-10%)) ,l 表示 lightness
*/
--blue: var(--customBlue, #23b8ff);
--green: var(--customGreen, #08cb6a);
--red: var(--customRed, #ff6923);
--purple: var(--customPurple, #3461fe); /* 品牌紫色 */
--primary: var(--customPrimary, #08cb6a); /* 品牌色 */
--gray: var(--customGray, #777);
--grayLight:var(--customGrayLight, #bbb);
--grayBg: var(--customGrayBg, #eee);
--grayBgLight:var(--customGrayBgLight, #f4f4f4);
--grayLine: var(--customGrayLine, #ddd);
--colorLink: var(--customColorLink, color(var(--primary) l(-10%)));
--colorLinkHover: var(--customColorLinkHover, color(var(--colorLink) alpha(-10%)));
--colorOverlay: var(--customColorOverlay, rgba(0, 0, 0, .5));
--colorError: var(--customColorError, var(--red)); /* 和红色一致 */
--colorSuccess: var(--customColorSuccess, var(--green)); /* 和绿色一致*/
--zIndexHeader: var(--customZIndexHeader, 1000);
--zIndexFooter: var(--customZIndexFooter, 2000);
--zIndexPopup: var(--customZIndexPopup, 3000);
--zIndexOverlay: var(--customZIndexOverlay, 4000); /* 默认高于header和footer部分 */
}
/* 该方式可能会被废弃,所以不用
** :root {
** --ellipsis: {
** overflow: hidden;
** white-space: nowrap;
** text-overflow: ellipsis;
** };
** --inline-block: {
** display: inline-block;
** vertical-align: middle;
** };
** --center-block: {
** margin-left: auto;
** margin-right: auto;
** };
** --word-break: {
** white-space: normal;
** word-wrap: break-word;
** word-break: break-all;
** };
** --flex-center: {
** display: flex;
** align-items: center;
** justify-content: center;
** };
** --disabled: {
** cursor: default;
** pointer-events: none;
** };
** --clearfix: {
** &::before,
** &::after {
** content: "";
** display: table;
** }
** &::after {
** clear: both;
** }
** };
** --text-justify: {
** text-align: justify;
** text-align-last: justify;
** &::after {
** content: "";
** display: inline-block;
** width: 100%;
** }
** };
** }
*/
@custom-media --iphonex (device-width : 375px) and (device-height : 812px) and (-webkit-device-pixel-ratio : 3);