You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
193 lines
4.6 KiB
193 lines
4.6 KiB
/**
|
|
* 这里是uni-app内置的常用样式变量
|
|
*
|
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
|
*
|
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
|
*/
|
|
|
|
/* 颜色变量 */
|
|
/* 页面左右间距 */
|
|
$page-row-spacing: 30upx;
|
|
$page-color-base: #f8f8f8;
|
|
$page-color-light: #f8f6fc;
|
|
$base-color: #fa436a;
|
|
/* 行为相关颜色 */
|
|
$uni-color-primary: #fa436a;
|
|
$uni-color-success: #4cd964;
|
|
$uni-color-warning: #f0ad4e;
|
|
$uni-color-error: #dd524d;
|
|
|
|
/* 文字基本颜色 */
|
|
$uni-text-color:#333;//基本色
|
|
$uni-text-color-inverse:#fff;//反色
|
|
$uni-text-color-grey:#999;//辅助灰色,如加载更多的提示信息
|
|
$uni-text-color-placeholder: #808080;
|
|
$uni-text-color-disable:#c0c0c0;
|
|
|
|
/* 背景颜色 */
|
|
$uni-bg-color:#ffffff;
|
|
$uni-bg-color-grey:#f8f8f8;
|
|
$uni-bg-color-hover:#f1f1f1;//点击状态颜色
|
|
$uni-bg-color-mask:rgba(0, 0, 0, 0.4);//遮罩颜色
|
|
|
|
/* 边框颜色 */
|
|
$uni-border-color:#c8c7cc;
|
|
$border-color-dark: #DCDFE6;
|
|
/* 尺寸变量 */
|
|
|
|
/* 文字尺寸 */
|
|
$font-base: 28upx;
|
|
$font-sm: 24upx;
|
|
$uni-font-size-sm:24upx;
|
|
$uni-font-size-base:28upx;
|
|
$uni-font-size-lg:32upx;
|
|
$font-lg: 32upx;
|
|
/*文字颜色*/
|
|
$font-color-dark: #303133;
|
|
$font-color-base: #606266;
|
|
$font-color-light: #909399;
|
|
$font-color-disabled: #C0C4CC;
|
|
$font-color-spec: #4399fc;
|
|
/* 图片尺寸 */
|
|
$uni-img-size-sm:40upx;
|
|
$uni-img-size-base:52upx;
|
|
$uni-img-size-lg:80upx;
|
|
|
|
/* Border Radius */
|
|
$uni-border-radius-sm: 4upx;
|
|
$uni-border-radius-base: 6upx;
|
|
$uni-border-radius-lg: 12upx;
|
|
$uni-border-radius-circle: 50%;
|
|
|
|
/* 水平间距 */
|
|
$uni-spacing-row-sm: 10px;
|
|
$uni-spacing-row-base: 20upx;
|
|
$uni-spacing-row-lg: 30upx;
|
|
|
|
/* 垂直间距 */
|
|
$uni-spacing-col-sm: 8upx;
|
|
$uni-spacing-col-base: 16upx;
|
|
$uni-spacing-col-lg: 24upx;
|
|
|
|
/* 透明度 */
|
|
$uni-opacity-disabled: 0.3; // 组件禁用态的透明度
|
|
|
|
/* 文章场景相关 */
|
|
$uni-color-title: #2C405A; // 文章标题颜色
|
|
$uni-font-size-title:40upx;
|
|
$uni-color-subtitle: #555555; // 二级标题颜色
|
|
$uni-font-size-subtitle:36upx;
|
|
$uni-color-paragraph: #3F536E; // 文章段落颜色
|
|
$uni-font-size-paragraph:30upx;
|
|
/* #ifndef APP-PLUS-NVUE */
|
|
//IE盒子模型
|
|
page,
|
|
view,
|
|
scroll-view,
|
|
swiper,
|
|
button,
|
|
input,
|
|
textarea,
|
|
label,
|
|
navigator,
|
|
image {
|
|
box-sizing: border-box !important;
|
|
}
|
|
//消除图片下边距
|
|
image {
|
|
vertical-align: top;
|
|
}
|
|
|
|
//主题色变量
|
|
$theme-red: #ff393b;
|
|
//水平弹性盒子
|
|
@mixin fr($j:s,$a:h) {
|
|
display: flex;
|
|
@if $j == s {
|
|
justify-content: flex-start;
|
|
} @else if $j == e {
|
|
justify-content: flex-end;
|
|
} @else if $j == c {
|
|
justify-content: center;
|
|
} @else if $j == a {
|
|
justify-content: space-around;
|
|
} @else if $j == b {
|
|
justify-content: space-between;
|
|
}
|
|
@if $a == h {
|
|
align-items: stretch;
|
|
} @else if $a == s {
|
|
align-items: flex-start;
|
|
} @else if $a == e {
|
|
align-items: flex-end;
|
|
} @else if $a == c {
|
|
align-items: center;
|
|
} @else if $a == b {
|
|
align-items: baseline;
|
|
}
|
|
}
|
|
//垂直弹性盒子
|
|
@mixin fc($j:s,$a:h) {
|
|
@include fr($j,$a);
|
|
flex-direction: column;
|
|
}
|
|
//字体
|
|
@mixin font($size,$color,$weight:normal) {
|
|
color: $color !important;
|
|
font-size: $size !important;
|
|
font-weight: $weight !important;
|
|
}
|
|
//尺寸
|
|
@mixin size($width,$height:$width) {
|
|
width: $width !important;
|
|
height: $height !important;
|
|
}
|
|
//阴影
|
|
@mixin shadow($shuiping:0,$chuizhi:5upx,$mohu:10upx,$pianyi:0,$color:rgba(0,0,0,.2)) {
|
|
box-shadow: $shuiping $chuizhi $mohu $pianyi $color;
|
|
}
|
|
//文本省略
|
|
@mixin ell($line:1) {
|
|
@if $line == 1 {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
} @else {
|
|
display: -webkit-box !important;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
word-break: break-all;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: $line;
|
|
}
|
|
}
|
|
//像素边框
|
|
@mixin line($top:1,$right:1,$bottom:1,$left:1,$color:#ddd) {
|
|
position: relative;
|
|
&:after {
|
|
content: " ";
|
|
width: 200%;
|
|
height: 200%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
border-radius: inherit;
|
|
transform: scale(0.5);
|
|
transform-origin: 0 0;
|
|
pointer-events: none;
|
|
box-sizing: border-box;
|
|
border: 0 $color solid;
|
|
border-top-width: #{$top}px;
|
|
border-right-width: #{$right}px;
|
|
border-bottom-width: #{$bottom}px;
|
|
border-left-width: #{$left}px;
|
|
}
|
|
}
|
|
/* #endif */
|