登录、home、工单管理
This commit is contained in:
@@ -11,11 +11,6 @@
|
||||
/**日历*/
|
||||
[class*=" el-icon-"], [class^=el-icon-]
|
||||
color #c0c4cc
|
||||
.el-date-editor--daterange.el-input__inner
|
||||
width 2.45rem
|
||||
.el-input__inner
|
||||
height .3rem
|
||||
line-height .3rem
|
||||
.el-date-range-picker__header div
|
||||
color #606266
|
||||
.el-date-table td span
|
||||
@@ -47,11 +42,15 @@
|
||||
-webkit-font-smoothing antialiased
|
||||
-moz-osx-font-smoothing grayscale
|
||||
.close_icon
|
||||
width .3rem
|
||||
height .3rem
|
||||
position absolute
|
||||
right .05rem
|
||||
top .08rem
|
||||
right 0
|
||||
top .05rem
|
||||
color #C0C4CC
|
||||
font-size .14rem
|
||||
font-size .2rem
|
||||
line-height .3rem
|
||||
text-align center
|
||||
.select_icon
|
||||
width .2rem
|
||||
height .2rem
|
||||
|
||||
39
src/style/mixin.styl
Normal file
39
src/style/mixin.styl
Normal file
@@ -0,0 +1,39 @@
|
||||
$red = #e74f1a
|
||||
$green = #6CBE8B
|
||||
$yellow = #E9B451
|
||||
$blue = #6798ef
|
||||
$gray = #c9c9c9
|
||||
$fc1 = #323232
|
||||
|
||||
|
||||
//宽高
|
||||
_wh(w, h)
|
||||
width: w
|
||||
height: h
|
||||
|
||||
//字体大小、行高、颜色
|
||||
_font(size,height,color=$fc1,weight=normal,align=left)
|
||||
font-size: size
|
||||
line-height: height
|
||||
color: color
|
||||
font-weight: weight
|
||||
text-align: align
|
||||
|
||||
//flex 布局和 子元素 对其方式
|
||||
_fj(x=space-between,y=center)
|
||||
display: flex
|
||||
justify-content: x
|
||||
align-items: y
|
||||
|
||||
// 背景图片地址和大小
|
||||
_bis(url,w,h=auto,x=center,y=center)
|
||||
background-position: x y
|
||||
background-size: w h
|
||||
background-image: url(url)
|
||||
background-repeat: no-repeat
|
||||
|
||||
// 定位上下居中
|
||||
_ct()
|
||||
position: absolute
|
||||
top: 50%
|
||||
transform: translateY(-50%)
|
||||
@@ -17,7 +17,6 @@ time, mark, audio, video, input, button {
|
||||
outline: none;
|
||||
font-size: 0.16rem;
|
||||
line-height: inherit;
|
||||
color: #ffffff;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user