初始化提交
176
public/static/theme/css/_config.less
Normal file
@@ -0,0 +1,176 @@
|
||||
@charset "UTF-8";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
// 默认盒边框样式
|
||||
@BoxBottomLine: 1px solid rgba(0, 0, 0, 0.10);
|
||||
@BoxBorderColor: #EEE;
|
||||
@BoxBorderRadius: 3px;
|
||||
|
||||
// 输入边线颜色
|
||||
@RadioBorderNormalColor: #CCC;
|
||||
@InputBorderNormalColor: #EEE;
|
||||
@InputBorderActiveColor: #DDD;
|
||||
|
||||
// 基础阴影配置
|
||||
@ShadowOuterMin: 0 0 4px 0 rgba(0, 0, 0, 0.20);
|
||||
@ShadowOuterMax: 0 0 6px 1px rgba(0, 0, 0, 0.20);
|
||||
@ShadowBodyTop: 0 1px 6px 1px rgba(0, 21, 41, 0.35);
|
||||
@ShadowBodyLeft: 1px 0 6px 1px rgba(0, 21, 41, 0.35);
|
||||
@ShadowBodyRight: 0 1px 6px 1px rgba(0, 21, 41, 0.35);
|
||||
@ShadowInset: 0 1px 20px 0 rgba(0, 0, 0, 0.10) inset;
|
||||
|
||||
// 导航条颜色配置
|
||||
@TopHeaderTextColor: #333;
|
||||
@TopHeaderBackColor: #FFF;
|
||||
@TopHeaderNavNormalTextColor: @TopHeaderTextColor;
|
||||
@TopHeaderNavNormalBackColor: @TopHeaderBackColor;
|
||||
|
||||
// 导航条按钮颜色
|
||||
@TopHeaderNavHoverTextColor: #000;
|
||||
@TopHeaderNavHoverBackColor: rgba(0, 0, 0, 0.05);
|
||||
@TopHeaderNavActiveTextColor: #000;
|
||||
@TopHeaderNavActiveBackColor: rgba(0, 0, 0, 0.10);
|
||||
|
||||
// 布局尺寸设置
|
||||
@LayoutLeftMiniSize: 55px;
|
||||
@LayoutLeftDefaSize: 200px;
|
||||
@LayoutLeftNavHeight: 50px;
|
||||
@LayoutHeadTopHeight: 55px;
|
||||
@LayoutBodyHeadHeight: 50px;
|
||||
|
||||
// 左侧菜单布局颜色
|
||||
@LeftMainBackColor: #20222A !important;
|
||||
|
||||
@LeftMainNavHoverBackColor: rgba(99, 99, 99, 0.2);
|
||||
@LeftMainNavHoverTextColor: #FFF;
|
||||
|
||||
@LeftMainNavNormalBackColor: none;
|
||||
@LeftMainNavNormalTextColor: #EEE;
|
||||
|
||||
@LeftMainNavActiveBackColor: #098;
|
||||
@LeftMainNavActiveTextColor: #FFF;
|
||||
|
||||
// 加载页面背景颜色
|
||||
@LoadBackColor: #EFEFEF;
|
||||
|
||||
// 窗口页面背景颜色
|
||||
@BodyMainBackColor: #EFEFEF;
|
||||
|
||||
// 最小滚动样式
|
||||
#defaScrollbar() {
|
||||
height: 100%;
|
||||
display: block;
|
||||
overflow: auto;
|
||||
overflow-x: hidden;
|
||||
&::-webkit-scrollbar {
|
||||
width: 3px !important;
|
||||
|
||||
&-track {
|
||||
background: #666 !important
|
||||
}
|
||||
|
||||
&-thumb {
|
||||
background-color: #999 !important
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 通用延时动态
|
||||
#defaTransition(@time:0.2s,@type:all) {
|
||||
transition: @type @time linear;
|
||||
-o-transition: @type @time linear;
|
||||
-moz-transition: @type @time linear;
|
||||
-webkit-transition: @type @time linear;
|
||||
}
|
||||
|
||||
// 内容主体布局
|
||||
#bodyLayout() {
|
||||
> form.layui-form.layui-card {
|
||||
margin: 0;
|
||||
box-shadow: @ShadowOuterMax;
|
||||
|
||||
> .layui-card-body {
|
||||
padding: 40px 40px 10px 40px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 图片背景容器
|
||||
#imageBgCover() {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
background: none no-repeat center center;
|
||||
vertical-align: middle;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
// Layui 字体图标
|
||||
#iconLayout(@size:15px) {
|
||||
font-family: layui-icon !important;
|
||||
font-size: @size;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
// 禁止选中内容
|
||||
#notSelect() {
|
||||
user-select: none;
|
||||
-ms-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none
|
||||
}
|
||||
|
||||
// Flex 基础定位
|
||||
#flex() {
|
||||
display: -moz-box;
|
||||
display: -moz-flex;
|
||||
display: -ms-flexbox;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
// Flex 换行方式
|
||||
#flexWrap(@type:wrap) {
|
||||
-ms-flex-wrap: @type;
|
||||
-webkit-flex-wrap: @type;
|
||||
flex-wrap: @type;
|
||||
}
|
||||
|
||||
// Flex 垂直方向
|
||||
#flexAlign(@type) {
|
||||
-ms-flex-align: @type;
|
||||
-webkit-box-align: @type;
|
||||
-webkit-align-items: @type;
|
||||
align-items: @type;
|
||||
}
|
||||
|
||||
// Flex 横向布局
|
||||
#flexJustify(@type) {
|
||||
-ms-flex-pack: @type;
|
||||
-webkit-box-pack: @type;
|
||||
-webkit-justify-content: @type;
|
||||
justify-content: @type;
|
||||
}
|
||||
|
||||
// 主轴方向
|
||||
#flexDirection(@type:row) {
|
||||
-webkit-box-orient: vertical;
|
||||
-ms-flex-direction: @type;
|
||||
-webkit-flex-direction: @type;
|
||||
flex-direction: @type;
|
||||
}
|
||||
1716
public/static/theme/css/_custom.less
Normal file
449
public/static/theme/css/_display.less
Normal file
@@ -0,0 +1,449 @@
|
||||
@charset "UTF-8";
|
||||
@import "_config.less";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
fieldset {
|
||||
margin: 0 0 10px 0;
|
||||
border: 1px solid @BoxBorderColor;
|
||||
padding: 10px 20px;
|
||||
background: #fff;
|
||||
border-radius: @BoxBorderRadius;
|
||||
|
||||
legend {
|
||||
color: #666;
|
||||
padding: 0 10px;
|
||||
font-size: 12px;
|
||||
letter-spacing: 1px;
|
||||
|
||||
.layui-badge:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-form-item {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
form.layui-form fieldset {
|
||||
padding: 15px 25px;
|
||||
}
|
||||
|
||||
.layui-tab,
|
||||
.layui-card {
|
||||
border-radius: @BoxBorderRadius;
|
||||
}
|
||||
|
||||
.layui-tab {
|
||||
.layui-tab-title {
|
||||
border-top-left-radius: @BoxBorderRadius;
|
||||
border-top-right-radius: @BoxBorderRadius;
|
||||
|
||||
> li:first-child {
|
||||
padding: 0 15px 0 17px;
|
||||
margin-left: 0 !important;
|
||||
border-top-left-radius: @BoxBorderRadius;
|
||||
|
||||
&:after {
|
||||
border-left: none
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layui-tab-content {
|
||||
border-bottom-left-radius: @BoxBorderRadius;
|
||||
border-bottom-right-radius: @BoxBorderRadius;
|
||||
}
|
||||
|
||||
> .layui-tab-content {
|
||||
padding: 20px;
|
||||
background: #fff;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-btn {
|
||||
border: 1px solid #16baaa;
|
||||
|
||||
&:hover:not(.layui-btn-disabled) {
|
||||
filter: alpha(opacity=100);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
&-warm {
|
||||
border: 1px solid #FFB800;
|
||||
}
|
||||
|
||||
&-danger {
|
||||
border: 1px solid #FF5722;
|
||||
}
|
||||
|
||||
&-normal {
|
||||
border: 1px solid #1E9FFF;
|
||||
}
|
||||
|
||||
&-disabled {
|
||||
border: 1px solid @BoxBorderColor;
|
||||
}
|
||||
|
||||
&-primary {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
&-group {
|
||||
border: 1px solid #098;
|
||||
overflow: hidden;
|
||||
background: #009688;
|
||||
line-height: 30px;
|
||||
border-radius: 2px;
|
||||
|
||||
+ .layui-btn {
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.layui-btn {
|
||||
height: 30px;
|
||||
line-height: 32px;
|
||||
border-width: 0 !important;
|
||||
border-radius: 0 !important;
|
||||
|
||||
+ .layui-btn {
|
||||
margin-left: 1px !important;
|
||||
}
|
||||
|
||||
&-primary:hover {
|
||||
border-color: #009688;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
& + .layui-btn {
|
||||
margin-left: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-code {
|
||||
border-radius: @BoxBorderRadius;
|
||||
}
|
||||
|
||||
.layui-badge {
|
||||
margin-right: 5px;
|
||||
|
||||
&-middle {
|
||||
width: 1em;
|
||||
height: auto;
|
||||
padding: 5px;
|
||||
line-height: 16px;
|
||||
white-space: normal;
|
||||
box-sizing: content-box;
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-input,
|
||||
.layui-select {
|
||||
line-height: 38px;
|
||||
border-color: @InputBorderNormalColor;
|
||||
|
||||
&:hover, &:active, &:focus {
|
||||
border-color: @InputBorderActiveColor;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-select {
|
||||
appearance: revert;
|
||||
-moz-appearance: revert;
|
||||
-webkit-appearance: revert;
|
||||
}
|
||||
|
||||
.layui-disabled,
|
||||
.layui-disabled:hover {
|
||||
color: #333 !important;
|
||||
background: #EEE !important;
|
||||
}
|
||||
|
||||
.layui-nav {
|
||||
.layui-nav-item {
|
||||
.layui-elip {
|
||||
padding-right: 35px !important;
|
||||
}
|
||||
|
||||
.layui-nav-more {
|
||||
right: 15px;
|
||||
font-size: 14px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layui-tags {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
vertical-align: middle;
|
||||
|
||||
.layui-tag {
|
||||
color: #FFF;
|
||||
height: 38px;
|
||||
margin: 3px 4px 3px 0;
|
||||
padding: 0 4px 0 10px;
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
line-height: 38px;
|
||||
border-radius: 2px;
|
||||
white-space: nowrap;
|
||||
background: #1E9FFF !important;
|
||||
user-select: none;
|
||||
-ms-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
|
||||
.layui-icon {
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
margin-left: 5px;
|
||||
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
color: #FF5722;
|
||||
}
|
||||
}
|
||||
|
||||
&-input {
|
||||
width: 100px;
|
||||
resize: none;
|
||||
margin: 3px 8px 3px 0;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layui-table {
|
||||
td, th {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
td.list-table-check-td + td,
|
||||
th.list-table-check-td + th {
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
input.layui-input,
|
||||
.layui-btn.layui-btn-sm {
|
||||
height: 26px;
|
||||
box-sizing: border-box;
|
||||
line-height: 26px;
|
||||
}
|
||||
|
||||
.input-right-icon {
|
||||
width: 28px;
|
||||
height: 26px;
|
||||
line-height: 26px;
|
||||
}
|
||||
|
||||
&[lay-size="lg"] {
|
||||
input.layui-input,
|
||||
.layui-btn.layui-btn-sm {
|
||||
height: 38px;
|
||||
box-sizing: border-box;
|
||||
line-height: 38px;
|
||||
}
|
||||
|
||||
.input-right-icon {
|
||||
width: 38px;
|
||||
height: 36px;
|
||||
line-height: 36px;
|
||||
}
|
||||
}
|
||||
|
||||
.list-table-sort-td {
|
||||
width: 10px !important;
|
||||
text-align: center !important;
|
||||
padding-left: 5px !important;
|
||||
padding-right: 5px !important;
|
||||
|
||||
button {
|
||||
width: 56px;
|
||||
background: #009688
|
||||
}
|
||||
|
||||
input {
|
||||
width: 50px;
|
||||
color: #666;
|
||||
border: 1px solid @InputBorderNormalColor;
|
||||
padding: 2px;
|
||||
font-size: 9pt;
|
||||
text-align: center;
|
||||
line-height: 18px
|
||||
}
|
||||
}
|
||||
|
||||
.list-table-check-td {
|
||||
width: 10px !important;
|
||||
text-align: center !important;
|
||||
padding-left: 15px !important;
|
||||
padding-right: 15px !important;
|
||||
|
||||
input {
|
||||
margin: 0 !important;
|
||||
vertical-align: middle
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tableSelect {
|
||||
.layui-table-view {
|
||||
margin: 10px 0;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-table-view {
|
||||
margin: 0;
|
||||
|
||||
.layui-form-switch {
|
||||
margin-top: -3px;
|
||||
}
|
||||
|
||||
.layui-table-page {
|
||||
.layui-laypage {
|
||||
.layui-laypage-prev,
|
||||
.layui-laypage-next {
|
||||
padding: 0 8px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.layui-laypage-prev {
|
||||
margin-left: 0 !important;
|
||||
}
|
||||
|
||||
.layui-laypage-next {
|
||||
margin-right: 6px !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layui-layer-tips {
|
||||
&.layui-layer-image {
|
||||
width: auto !important;
|
||||
|
||||
.layui-layer-content {
|
||||
width: auto !important;
|
||||
padding: 4px !important;
|
||||
|
||||
img {
|
||||
z-index: 2;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
i.layui-layer-TipsR {
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layui-layer-content {
|
||||
.layui-form.layui-card {
|
||||
margin: 0;
|
||||
box-shadow: none !important;
|
||||
|
||||
> .layui-card-body {
|
||||
padding: 20px 40px 0 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layui-layer-dialog {
|
||||
.layui-layer-content {
|
||||
.layui-layer-ico {
|
||||
top: 50% !important;
|
||||
margin-top: -15px !important
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.laydate-footer-btns {
|
||||
span {
|
||||
line-height: 24px !important
|
||||
}
|
||||
}
|
||||
|
||||
.layui-form-item {
|
||||
margin-bottom: 10px;
|
||||
|
||||
.layui-form-checkbox {
|
||||
margin: 4px;
|
||||
}
|
||||
|
||||
.layui-input.text-center:not([type=number]) {
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-form-select {
|
||||
.layui-edge {
|
||||
top: 50%;
|
||||
width: unset;
|
||||
height: unset;
|
||||
border: none;
|
||||
color: #c2c2c2;
|
||||
margin-top: -7px;
|
||||
line-height: 15px;
|
||||
#iconLayout(15px);
|
||||
|
||||
&:before {
|
||||
content: "\e61a"
|
||||
}
|
||||
}
|
||||
|
||||
dl {
|
||||
top: 37px;
|
||||
padding: 0;
|
||||
border-color: @InputBorderActiveColor;
|
||||
|
||||
dd.layui-this {
|
||||
font-weight: normal;
|
||||
}
|
||||
}
|
||||
|
||||
&ed dl {
|
||||
min-height: fit-content;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-form-radio {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.layui-form-switch {
|
||||
padding: 0 10px 0 5px;
|
||||
|
||||
em {
|
||||
white-space: nowrap;
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-form-onswitch {
|
||||
padding: 0 5px 0 10px;
|
||||
|
||||
em {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-form-checkbox.layui-form-checked i {
|
||||
border-color: #5FB878;
|
||||
}
|
||||
492
public/static/theme/css/_layout.less
Normal file
@@ -0,0 +1,492 @@
|
||||
@charset "UTF-8";
|
||||
@import "_config.less";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
.layui-layout {
|
||||
> .layui-header {
|
||||
left: @LayoutLeftDefaSize;
|
||||
right: 0;
|
||||
color: @TopHeaderTextColor !important;
|
||||
height: @LayoutHeadTopHeight !important;
|
||||
z-index: 222;
|
||||
position: absolute;
|
||||
box-sizing: content-box;
|
||||
background: @TopHeaderBackColor !important;
|
||||
#notSelect();
|
||||
|
||||
> ul.layui-nav {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
white-space: nowrap;
|
||||
|
||||
.layui-logo-hide {
|
||||
width: 50px !important;
|
||||
padding: 0 !important;
|
||||
display: none;
|
||||
text-align: center;
|
||||
|
||||
.headimg {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
&.layui-layout-left {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
&.layui-layout-right {
|
||||
.headimg {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-nav-item > a {
|
||||
height: @LayoutHeadTopHeight;
|
||||
padding: 0 18px;
|
||||
overflow: hidden;
|
||||
line-height: @LayoutHeadTopHeight;
|
||||
|
||||
&:hover {
|
||||
color: @TopHeaderNavHoverTextColor
|
||||
}
|
||||
|
||||
.layui-icon {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layui-nav-item {
|
||||
height: @LayoutHeadTopHeight;
|
||||
line-height: @LayoutHeadTopHeight;
|
||||
|
||||
> a {
|
||||
color: @TopHeaderNavNormalTextColor !important;
|
||||
|
||||
&:hover {
|
||||
color: @TopHeaderNavHoverTextColor !important;
|
||||
background: @TopHeaderNavHoverBackColor !important;
|
||||
}
|
||||
}
|
||||
|
||||
&.layui-this > a {
|
||||
color: @TopHeaderNavActiveTextColor !important;
|
||||
background: @TopHeaderNavActiveBackColor !important;
|
||||
}
|
||||
|
||||
.layui-nav-child {
|
||||
top: @LayoutHeadTopHeight;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
line-height: 48px;
|
||||
border-radius: 0;
|
||||
|
||||
&.layui-show + a.layui-elip {
|
||||
background: @TopHeaderNavHoverBackColor !important;
|
||||
}
|
||||
|
||||
+ a.layui-elip {
|
||||
|
||||
img {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin-right: 5px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
&.layui-show + a {
|
||||
background: #FFF;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin: 0;
|
||||
|
||||
a {
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
|
||||
&:hover {
|
||||
background: @TopHeaderNavHoverBackColor !important;
|
||||
}
|
||||
|
||||
.layui-icon {
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layui-nav-bar,
|
||||
.layui-nav-item:after {
|
||||
display: none !important
|
||||
}
|
||||
}
|
||||
|
||||
> .layui-side {
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: @LayoutLeftDefaSize;
|
||||
z-index: 333;
|
||||
position: fixed;
|
||||
overflow: hidden;
|
||||
box-shadow: @ShadowBodyLeft;
|
||||
background-color: @LeftMainBackColor;
|
||||
#notSelect();
|
||||
|
||||
.layui-logo {
|
||||
color: #FFF;
|
||||
width: auto;
|
||||
height: @LayoutHeadTopHeight;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
box-shadow: none !important;
|
||||
line-height: @LayoutHeadTopHeight;
|
||||
border-bottom: @BoxBottomLine;
|
||||
|
||||
.headimg {
|
||||
margin: 0 10px 0 0;
|
||||
}
|
||||
|
||||
.headtxt {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
|
||||
sup {
|
||||
font-size: 9px;
|
||||
line-height: 9px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layui-side-target {
|
||||
&:before {
|
||||
color: #FFF;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: block;
|
||||
content: "\e602";
|
||||
text-align: center;
|
||||
font-weight: 700;
|
||||
line-height: 30px;
|
||||
transform: rotate(180deg);
|
||||
#iconLayout(14px);
|
||||
}
|
||||
|
||||
top: 50%;
|
||||
color: #fff;
|
||||
right: -2px;
|
||||
width: 15px;
|
||||
height: 30px;
|
||||
z-index: 334;
|
||||
cursor: pointer;
|
||||
display: none;
|
||||
position: absolute;
|
||||
margin-top: -15px;
|
||||
background: rgba(0, 0, 0, 0.4);
|
||||
border-top-left-radius: 100%;
|
||||
border-bottom-left-radius: 100%;
|
||||
}
|
||||
|
||||
.layui-nav-bar {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.layui-side-scroll {
|
||||
top: @LayoutHeadTopHeight;
|
||||
bottom: 0;
|
||||
width: 100% !important;
|
||||
height: 100% !important;
|
||||
overflow: auto;
|
||||
position: absolute;
|
||||
|
||||
.layui-side-icon {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.layui-side-tree {
|
||||
#defaScrollbar();
|
||||
}
|
||||
|
||||
.layui-side-icon:after,
|
||||
.layui-side-tree:after {
|
||||
height: @LayoutHeadTopHeight;
|
||||
content: '';
|
||||
display: block;
|
||||
}
|
||||
|
||||
.layui-nav-tree {
|
||||
width: @LayoutLeftDefaSize;
|
||||
background: none !important;
|
||||
|
||||
> li.layui-this {
|
||||
background: @LeftMainNavActiveBackColor;
|
||||
|
||||
> a {
|
||||
background: none !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layui-nav-item {
|
||||
|
||||
> a:hover {
|
||||
background-color: rgba(100, 100, 100, 0.1) !important;
|
||||
}
|
||||
|
||||
.layui-nav-child {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
dd, dd > a {
|
||||
background-color: @LeftMainNavNormalBackColor;
|
||||
}
|
||||
|
||||
dd.layui-this {
|
||||
background: none !important;
|
||||
|
||||
> a {
|
||||
color: @LeftMainNavActiveTextColor;
|
||||
background-color: @LeftMainNavActiveBackColor;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
height: @LayoutLeftNavHeight;
|
||||
display: block;
|
||||
line-height: @LayoutLeftNavHeight;
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
color: @LeftMainNavNormalTextColor;
|
||||
|
||||
&:hover {
|
||||
color: @LeftMainNavActiveTextColor;
|
||||
}
|
||||
|
||||
.nav-icon {
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
.layui-nav-more {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
> .layui-body {
|
||||
top: @LayoutHeadTopHeight;
|
||||
left: @LayoutLeftDefaSize;
|
||||
padding: 0;
|
||||
z-index: 111;
|
||||
background: @BodyMainBackColor;
|
||||
|
||||
> .think-page-loader {
|
||||
left: @LayoutLeftDefaSize
|
||||
}
|
||||
|
||||
> .think-page-body > .layui-card {
|
||||
box-shadow: none !important;
|
||||
background: none !important;
|
||||
|
||||
> .layui-card-body {
|
||||
top: 0;
|
||||
width: 100%;
|
||||
bottom: 0;
|
||||
padding: 0;
|
||||
z-index: 2;
|
||||
overflow: auto;
|
||||
position: absolute;
|
||||
box-sizing: border-box;
|
||||
|
||||
> .layui-card-html {
|
||||
padding: 15px;
|
||||
min-width: 100%;
|
||||
position: absolute;
|
||||
box-sizing: border-box;
|
||||
#bodyLayout();
|
||||
}
|
||||
|
||||
> .layui-card-table {
|
||||
padding: 15px;
|
||||
box-sizing: border-box;
|
||||
#bodyLayout();
|
||||
}
|
||||
|
||||
> div > .layui-tab.layui-tab-card {
|
||||
border: none;
|
||||
box-shadow: @ShadowOuterMax;
|
||||
|
||||
& > .layui-tab-content.think-box-shadow {
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
> .layui-card-line {
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 3;
|
||||
position: absolute;
|
||||
box-shadow: @ShadowBodyTop;
|
||||
}
|
||||
|
||||
> .layui-card-header {
|
||||
top: @LayoutHeadTopHeight;
|
||||
left: @LayoutLeftDefaSize;
|
||||
box-sizing: border-box;
|
||||
border-top: @BoxBottomLine;
|
||||
border-bottom: 1px solid #fff !important;
|
||||
#notSelect();
|
||||
|
||||
right: 0;
|
||||
height: @LayoutBodyHeadHeight;
|
||||
z-index: 4;
|
||||
padding: 0 15px;
|
||||
position: fixed;
|
||||
background: #FFF;
|
||||
line-height: @LayoutBodyHeadHeight;
|
||||
|
||||
> div {
|
||||
margin-top: -1px
|
||||
}
|
||||
|
||||
& + .layui-card-line {
|
||||
top: @LayoutBodyHeadHeight;
|
||||
|
||||
& + .layui-card-body {
|
||||
top: @LayoutBodyHeadHeight;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layui-layout-left-mini {
|
||||
.layui-header {
|
||||
left: @LayoutLeftMiniSize !important;
|
||||
}
|
||||
|
||||
> .layui-body {
|
||||
left: @LayoutLeftMiniSize !important;
|
||||
|
||||
> .think-page-loader {
|
||||
left: @LayoutLeftMiniSize !important;
|
||||
}
|
||||
|
||||
> .think-page-body > .layui-card > .layui-card-header {
|
||||
left: @LayoutLeftMiniSize !important;
|
||||
}
|
||||
}
|
||||
|
||||
> .layui-side {
|
||||
|
||||
.layui-logo {
|
||||
.headimg {
|
||||
margin: 0;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.headtxt {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-nav-more {
|
||||
display: none !important
|
||||
}
|
||||
|
||||
.layui-side-target:before {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
.layui-nav-item {
|
||||
a {
|
||||
padding: 0
|
||||
}
|
||||
|
||||
.nav-text {
|
||||
display: none
|
||||
}
|
||||
|
||||
.nav-icon {
|
||||
padding: 0 !important;
|
||||
font-size: 16px !important;
|
||||
display: inline-block !important;
|
||||
#defaTransition();
|
||||
}
|
||||
|
||||
.layui-nav-child {
|
||||
padding: 0;
|
||||
display: block !important;
|
||||
background-color: rgba(0, 0, 0, .3) !important
|
||||
}
|
||||
}
|
||||
|
||||
&,
|
||||
.layui-nav-tree,
|
||||
.layui-side-scroll,
|
||||
.layui-side-scroll .layui-nav-tree {
|
||||
width: @LayoutLeftMiniSize;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
[data-target-menu-type] i {
|
||||
display: inline-block;
|
||||
transform: rotate(180deg);
|
||||
-ms-transform: rotate(180deg);
|
||||
-webkit-transform: rotate(180deg);
|
||||
}
|
||||
}
|
||||
|
||||
.layui-layout-left-hide {
|
||||
> .layui-header {
|
||||
left: 0 !important;
|
||||
|
||||
.layui-logo-hide {
|
||||
display: inline-block !important;
|
||||
}
|
||||
}
|
||||
|
||||
> .layui-side {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
> .layui-body {
|
||||
left: 0 !important;
|
||||
|
||||
> .think-page-loader {
|
||||
left: 0 !important;
|
||||
}
|
||||
|
||||
> .think-page-body > .layui-card > .layui-card-header {
|
||||
left: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
[data-target-menu-type] {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
112
public/static/theme/css/_layout_1.less
Normal file
@@ -0,0 +1,112 @@
|
||||
@charset "UTF-8";
|
||||
@import "_config.less";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
> .layui-layout-admin {
|
||||
> .layui-side {
|
||||
background: @leftBackColor;
|
||||
|
||||
#leftBackColor() {
|
||||
background-color: rgba(0, 0, 0, 0.6);
|
||||
}
|
||||
|
||||
.layui-logo {
|
||||
#leftBackColor();
|
||||
|
||||
.headtxt {
|
||||
text-shadow: rgba(0, 0, 0, 0.5) 1px 2px 2px;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-side-scroll {
|
||||
display: flex !important;
|
||||
box-sizing: border-box;
|
||||
#leftBackColor();
|
||||
#defaTransition(0.2s, background-color);
|
||||
|
||||
.layui-side-icon {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.layui-side-tree {
|
||||
flex: 1;
|
||||
|
||||
.layui-nav-item {
|
||||
|
||||
a {
|
||||
color: @leftNormalTextColor;
|
||||
border-bottom: none !important;
|
||||
|
||||
&:hover {
|
||||
color: @leftActiveTextColor;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-this, &.layui-this {
|
||||
> a {
|
||||
color: @leftActiveTextColor;
|
||||
background: @leftActiveBackColor;
|
||||
}
|
||||
}
|
||||
|
||||
&ed > a {
|
||||
color: @leftActiveTextColor;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
> .layui-header {
|
||||
background: @headNormalBackColor;
|
||||
#defaTransition(0.2s, background-color);
|
||||
|
||||
.layui-nav-item {
|
||||
&.layui-this > a {
|
||||
color: @headActionTextColor;
|
||||
background: @headActiveBackColor;
|
||||
}
|
||||
|
||||
> a {
|
||||
color: @headNormalTextColor;
|
||||
|
||||
&:hover {
|
||||
color: @headActionTextColor;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.help-label b,
|
||||
.layui-tab-title .layui-this {
|
||||
color: @mainActiveBack
|
||||
}
|
||||
|
||||
.layui-btn-group {
|
||||
border-color: @mainActiveBack;
|
||||
background-color: @mainActiveBack;
|
||||
|
||||
.layui-btn {
|
||||
&:hover:not(.layui-btn-active) {
|
||||
color: @mainActiveBack;
|
||||
}
|
||||
|
||||
&.layui-btn-active {
|
||||
background-color: @mainActiveBack
|
||||
}
|
||||
}
|
||||
}
|
||||
39
public/static/theme/css/_layout_1_black.less
Normal file
@@ -0,0 +1,39 @@
|
||||
@charset "UTF-8";
|
||||
@import "_config.less";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
.layui-layout-theme-black-1 {
|
||||
@mainActiveBack: #393D49 !important;
|
||||
@mainNormalBack: rgba(0, 0, 0, 0.1) !important;
|
||||
|
||||
@mainActionText: #FFFFFF !important;
|
||||
@mainNormalText: #EEEEEE !important;
|
||||
|
||||
@headNormalBackColor: @mainActiveBack;
|
||||
@headActiveBackColor: #098 !important;
|
||||
|
||||
@headNormalTextColor: @mainNormalText;
|
||||
@headActionTextColor: @mainActionText;
|
||||
|
||||
@leftNormalTextColor: @mainNormalText;
|
||||
@leftActiveTextColor: @mainActionText;
|
||||
|
||||
@leftBackColor: @mainActiveBack;
|
||||
@leftNormalBackColor: @mainNormalBack;
|
||||
@leftActiveBackColor: #098 !important;
|
||||
|
||||
@import (multiple)"_layout_1.less";
|
||||
}
|
||||
39
public/static/theme/css/_layout_1_blue.less
Normal file
@@ -0,0 +1,39 @@
|
||||
@charset "UTF-8";
|
||||
@import "_config.less";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
.layui-layout-theme-blue-1 {
|
||||
@mainActiveBack: #3963bc !important;
|
||||
@mainNormalBack: rgba(0, 0, 0, 0.1) !important;
|
||||
|
||||
@mainActionText: #FFFFFF !important;
|
||||
@mainNormalText: #EEEEEE !important;
|
||||
|
||||
@headNormalBackColor: @mainActiveBack;
|
||||
@headActiveBackColor: @mainNormalBack;
|
||||
|
||||
@headNormalTextColor: @mainNormalText;
|
||||
@headActionTextColor: @mainActionText;
|
||||
|
||||
@leftNormalTextColor: @mainNormalText;
|
||||
@leftActiveTextColor: @mainActionText;
|
||||
|
||||
@leftBackColor: @mainActiveBack;
|
||||
@leftNormalBackColor: @mainNormalBack;
|
||||
@leftActiveBackColor: @mainActiveBack;
|
||||
|
||||
@import (multiple)"_layout_1.less";
|
||||
}
|
||||
39
public/static/theme/css/_layout_1_green.less
Normal file
@@ -0,0 +1,39 @@
|
||||
@charset "UTF-8";
|
||||
@import "_config.less";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
.layui-layout-theme-green-1 {
|
||||
@mainActiveBack: #098 !important;
|
||||
@mainNormalBack: rgba(0, 0, 0, 0.1) !important;
|
||||
|
||||
@mainActionText: #FFFFFF !important;
|
||||
@mainNormalText: #EEEEEE !important;
|
||||
|
||||
@headNormalBackColor: @mainActiveBack;
|
||||
@headActiveBackColor: @mainNormalBack;
|
||||
|
||||
@headNormalTextColor: @mainNormalText;
|
||||
@headActionTextColor: @mainActionText;
|
||||
|
||||
@leftNormalTextColor: @mainNormalText;
|
||||
@leftActiveTextColor: @mainActionText;
|
||||
|
||||
@leftBackColor: @mainActiveBack;
|
||||
@leftNormalBackColor: @mainNormalBack;
|
||||
@leftActiveBackColor: @mainActiveBack;
|
||||
|
||||
@import (multiple)"_layout_1.less";
|
||||
}
|
||||
39
public/static/theme/css/_layout_1_red.less
Normal file
@@ -0,0 +1,39 @@
|
||||
@charset "UTF-8";
|
||||
@import "_config.less";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
.layui-layout-theme-red-1 {
|
||||
@mainActiveBack: #AA3130 !important;
|
||||
@mainNormalBack: rgba(0, 0, 0, 0.1) !important;
|
||||
|
||||
@mainActionText: #FFFFFF !important;
|
||||
@mainNormalText: #EEEEEE !important;
|
||||
|
||||
@headNormalBackColor: @mainActiveBack;
|
||||
@headActiveBackColor: @mainNormalBack;
|
||||
|
||||
@headNormalTextColor: @mainNormalText;
|
||||
@headActionTextColor: @mainActionText;
|
||||
|
||||
@leftNormalTextColor: @mainNormalText;
|
||||
@leftActiveTextColor: @mainActionText;
|
||||
|
||||
@leftBackColor: @mainActiveBack;
|
||||
@leftNormalBackColor: @mainNormalBack;
|
||||
@leftActiveBackColor: @mainActiveBack;
|
||||
|
||||
@import (multiple)"_layout_1.less";
|
||||
}
|
||||
233
public/static/theme/css/_layout_2.less
Normal file
@@ -0,0 +1,233 @@
|
||||
@charset "UTF-8";
|
||||
@import "_config.less";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
> .layui-layout-admin {
|
||||
> .layui-side {
|
||||
width: 260px;
|
||||
display: block !important;
|
||||
box-shadow: none !important;
|
||||
background-color: @mainColor;
|
||||
|
||||
.layui-logo {
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.layui-side-target {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.layui-side-scroll {
|
||||
display: flex !important;
|
||||
box-sizing: border-box;
|
||||
|
||||
.layui-nav-child {
|
||||
background: none !important;
|
||||
}
|
||||
|
||||
.layui-side-icon {
|
||||
width: 100px;
|
||||
display: block;
|
||||
background: @mainColor;
|
||||
|
||||
a {
|
||||
height: 60px;
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
text-align: center;
|
||||
line-height: 60px;
|
||||
white-space: nowrap;
|
||||
|
||||
&:hover {
|
||||
background-color: rgba(0, 0, 0, 0.1);;
|
||||
}
|
||||
|
||||
.layui-icon, span {
|
||||
color: #fff;
|
||||
overflow: hidden;
|
||||
max-width: 4em;
|
||||
// margin-right: 5px;
|
||||
text-overflow: ellipsis;
|
||||
vertical-align: middle;
|
||||
display: inline-block !important;
|
||||
}
|
||||
}
|
||||
|
||||
> .layui-this {
|
||||
background: #fff;
|
||||
|
||||
a {
|
||||
&:hover {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.layui-icon, span {
|
||||
color: @textColor;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layui-side-tree {
|
||||
flex: 1;
|
||||
background-color: #fff;
|
||||
|
||||
> .layui-nav-tree {
|
||||
width: unset !important;
|
||||
}
|
||||
|
||||
.layui-nav-item {
|
||||
background: none !important;
|
||||
border-bottom-color: #fff;
|
||||
|
||||
a {
|
||||
color: #333 !important;
|
||||
background: none !important;
|
||||
border-bottom: none !important;
|
||||
|
||||
&:hover {
|
||||
color: @textColor;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-this, &.layui-this {
|
||||
> a {
|
||||
color: @textColor;
|
||||
background: none !important;
|
||||
font-weight: bold !important;
|
||||
|
||||
&:hover {
|
||||
background: none !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&ed > a {
|
||||
color: #999 !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
> .layui-body {
|
||||
left: 260px;
|
||||
|
||||
> .think-page-body > .layui-card {
|
||||
&:before {
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
z-index: 4;
|
||||
content: '';
|
||||
position: absolute;
|
||||
box-shadow: @ShadowBodyRight;
|
||||
}
|
||||
|
||||
> .layui-card-header {
|
||||
left: 261px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
> .layui-header {
|
||||
left: 260px;
|
||||
background-color: @mainColor;
|
||||
|
||||
.layui-layout-left {
|
||||
.layui-nav-item {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-nav-item {
|
||||
&.layui-this > a {
|
||||
color: #fff !important;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
> a {
|
||||
color: #eee !important;
|
||||
|
||||
&:hover {
|
||||
color: #fff !important;
|
||||
background: none !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
> .layui-layout-left-hide,
|
||||
> .layui-layout-left-mini {
|
||||
> .layui-side {
|
||||
|
||||
.layui-logo {
|
||||
.headimg {
|
||||
margin-right: 10px !important;
|
||||
}
|
||||
|
||||
.headtxt {
|
||||
display: inline-block !important;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-side-target {
|
||||
left: @iconWidth;
|
||||
margin-left: -12px;
|
||||
}
|
||||
|
||||
.layui-side-scroll .layui-side-icon {
|
||||
width: @iconWidth;
|
||||
display: block;
|
||||
background: #098;
|
||||
}
|
||||
}
|
||||
|
||||
> .layui-body {
|
||||
left: @iconWidth;
|
||||
z-index: 333;
|
||||
|
||||
> .think-page-body > .layui-card > .layui-card-header {
|
||||
left: @iconWidth+1;
|
||||
}
|
||||
}
|
||||
|
||||
> .layui-header {
|
||||
left: 260px !important;
|
||||
z-index: 334;
|
||||
}
|
||||
}
|
||||
|
||||
.help-label b,
|
||||
.layui-tab-title .layui-this {
|
||||
color: @mainColor
|
||||
}
|
||||
|
||||
.layui-btn-group {
|
||||
border-color: @mainColor;
|
||||
background-color: @mainColor;
|
||||
|
||||
.layui-btn {
|
||||
&:hover:not(.layui-btn-active) {
|
||||
color: @mainColor;
|
||||
}
|
||||
|
||||
&.layui-btn-active {
|
||||
background-color: @mainColor
|
||||
}
|
||||
}
|
||||
}
|
||||
25
public/static/theme/css/_layout_2_black.less
Normal file
@@ -0,0 +1,25 @@
|
||||
@charset "UTF-8";
|
||||
@import "_config.less";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
.layui-layout-theme-black-2 {
|
||||
|
||||
@iconWidth: 100px !important;
|
||||
@mainColor: #393D49 !important;
|
||||
@textColor: #009988 !important;
|
||||
|
||||
@import (multiple)"_layout_2.less";
|
||||
}
|
||||
25
public/static/theme/css/_layout_2_blue.less
Normal file
@@ -0,0 +1,25 @@
|
||||
@charset "UTF-8";
|
||||
@import "_config.less";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
.layui-layout-theme-blue-2 {
|
||||
|
||||
@iconWidth: 100px !important;
|
||||
@mainColor: #3963bc !important;
|
||||
@textColor: @mainColor;
|
||||
|
||||
@import (multiple)"_layout_2.less";
|
||||
}
|
||||
25
public/static/theme/css/_layout_2_green.less
Normal file
@@ -0,0 +1,25 @@
|
||||
@charset "UTF-8";
|
||||
@import "_config.less";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
.layui-layout-theme-green-2 {
|
||||
|
||||
@iconWidth: 100px !important;
|
||||
@mainColor: #098 !important;
|
||||
@textColor: #098 !important;
|
||||
|
||||
@import (multiple)"_layout_2.less";
|
||||
}
|
||||
25
public/static/theme/css/_layout_2_red.less
Normal file
@@ -0,0 +1,25 @@
|
||||
@charset "UTF-8";
|
||||
@import "_config.less";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
.layui-layout-theme-red-2 {
|
||||
|
||||
@iconWidth: 100px !important;
|
||||
@mainColor: #AA3130 !important;
|
||||
@textColor: #AA3130 !important;
|
||||
|
||||
@import (multiple)"_layout_2.less";
|
||||
}
|
||||
135
public/static/theme/css/_layout_white.less
Normal file
@@ -0,0 +1,135 @@
|
||||
@charset "UTF-8";
|
||||
@import "_config.less";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
.layui-layout-theme-white > .layui-layout-admin {
|
||||
> .layui-side {
|
||||
box-shadow: none;
|
||||
background-color: #fff !important;
|
||||
|
||||
.layui-logo {
|
||||
color: #333;
|
||||
box-shadow: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.layui-side-scroll {
|
||||
display: flex !important;
|
||||
box-sizing: border-box;
|
||||
|
||||
.layui-nav-child {
|
||||
background: none !important;
|
||||
}
|
||||
|
||||
.layui-side-icon {
|
||||
width: 60px;
|
||||
display: none;
|
||||
background: #fff;
|
||||
|
||||
a {
|
||||
height: 60px;
|
||||
display: block;
|
||||
text-align: center;
|
||||
line-height: 60px;
|
||||
}
|
||||
|
||||
.layui-icon {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
> .layui-this {
|
||||
background: #fff;
|
||||
|
||||
.layui-icon {
|
||||
color: #090 !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.layui-side-tree {
|
||||
flex: 1;
|
||||
|
||||
.layui-nav-item {
|
||||
background: none !important;
|
||||
border-bottom-color: #fff;
|
||||
|
||||
a {
|
||||
color: #333 !important;
|
||||
background: none !important;
|
||||
border-bottom: none !important;
|
||||
|
||||
&:hover {
|
||||
color: #090 !important;
|
||||
}
|
||||
}
|
||||
|
||||
.layui-this, &.layui-this {
|
||||
> a {
|
||||
color: #090 !important;
|
||||
background: none !important;
|
||||
font-weight: bold !important;
|
||||
|
||||
&:hover {
|
||||
background: none !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&ed > a {
|
||||
color: #999 !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
> .layui-body > .think-page-body > .layui-card {
|
||||
&:before {
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
z-index: 4;
|
||||
content: '';
|
||||
position: absolute;
|
||||
box-shadow: @ShadowBodyRight;
|
||||
}
|
||||
|
||||
> .layui-card-header {
|
||||
border-left: @BoxBottomLine;
|
||||
}
|
||||
}
|
||||
|
||||
> .layui-header {
|
||||
background: #fff !important;
|
||||
|
||||
.layui-nav-item {
|
||||
&.layui-this > a {
|
||||
color: #090 !important;
|
||||
font-weight: bold;
|
||||
background: none !important;
|
||||
}
|
||||
|
||||
> a {
|
||||
color: #333 !important;
|
||||
|
||||
&:hover {
|
||||
color: #090 !important;
|
||||
background: none !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
1
public/static/theme/css/console.css
Normal file
1
public/static/theme/css/console.css.map
Normal file
81
public/static/theme/css/console.less
Normal file
@@ -0,0 +1,81 @@
|
||||
@charset "UTF-8";
|
||||
@import "_config.less";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
::selection {
|
||||
color: #fff !important;
|
||||
background-color: #ec494e !important
|
||||
}
|
||||
|
||||
::-moz-selection {
|
||||
color: #fff !important;
|
||||
background-color: #ec494e !important
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: #ccc !important
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: #666 !important
|
||||
}
|
||||
|
||||
::-webkit-input-placeholder {
|
||||
color: #aaa
|
||||
}
|
||||
|
||||
:-webkit-autofill {
|
||||
&, &:hover, &:focus, &:active {
|
||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .1) inset !important;
|
||||
-webkit-transition: color 9999s ease-out, background-color 9999s ease-out !important;
|
||||
-webkit-transition-delay: 9999s !important;
|
||||
-webkit-text-fill-color: #333 !important
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
color: #333;
|
||||
font-size: 12px;
|
||||
|
||||
a {
|
||||
color: #06C;
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
color: #039;
|
||||
}
|
||||
}
|
||||
|
||||
input::-ms-clear {
|
||||
display: none
|
||||
}
|
||||
}
|
||||
|
||||
@import '_custom.less';
|
||||
@import '_display.less';
|
||||
@import '_layout.less';
|
||||
|
||||
@import '_layout_1_red.less';
|
||||
@import '_layout_1_blue.less';
|
||||
@import '_layout_1_black.less';
|
||||
@import '_layout_1_green.less';
|
||||
|
||||
@import '_layout_2_red.less';
|
||||
@import '_layout_2_blue.less';
|
||||
@import '_layout_2_black.less';
|
||||
@import '_layout_2_green.less';
|
||||
|
||||
@import '_layout_white.less';
|
||||
BIN
public/static/theme/css/font/iconfont.ttf
Normal file
BIN
public/static/theme/css/font/iconfont.woff
Normal file
BIN
public/static/theme/css/font/iconfont.woff2
Normal file
1
public/static/theme/css/iconfont.css
Normal file
@@ -0,0 +1 @@
|
||||
@charset "UTF-8";@font-face{font-family:iconfont;src:url(./font/iconfont.woff2?t=2021) format('woff2'),url(./font/iconfont.woff?t=2021) format('woff'),url(./font/iconfont.ttf?t=2021) format('truetype')}.iconfont{font-family:iconfont,serif!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.iconfont-logo:before{content:"\e607"}.iconfont-x7:before{content:"\e606"}.iconfont-x2:before{content:"\e600"}.iconfont-x1:before{content:"\e601"}.iconfont-x5:before{content:"\e602"}.iconfont-x4:before{content:"\e603"}.iconfont-x6:before{content:"\e604"}.iconfont-x3:before{content:"\e605"}.iconfont-shoplight:before{content:"\e7b8"}.iconfont-wxapp:before{content:"\e63c"}.iconfont-yinliang:before{content:"\e87a"}.iconfont-pick:before{content:"\e823"}.iconfont-camerarotate:before{content:"\e6f9"}.iconfont-phone_light:before{content:"\e826"}.iconfont-light:before{content:"\e6fa"}.iconfont-barcode:before{content:"\e6fb"}.iconfont-change:before{content:"\e829"}.iconfont-searchlist:before{content:"\e6fe"}.iconfont-down:before{content:"\e703"}.iconfont-countdown:before{content:"\e708"}.iconfont-notice:before{content:"\e70a"}.iconfont-upstage:before{content:"\e70f"}.iconfont-brand:before{content:"\e713"}.iconfont-choiceness:before{content:"\e715"}.iconfont-warn_light:before{content:"\e841"}.iconfont-creative:before{content:"\e719"}.iconfont-new:before{content:"\e71e"}.iconfont-cameraadd:before{content:"\e724"}.iconfont-at:before{content:"\e853"}.iconfont-mark:before{content:"\e731"}.iconfont-file:before{content:"\e739"}.iconfont-community:before{content:"\e741"}.iconfont-calendar:before{content:"\e74a"}.iconfont-cut:before{content:"\e74b"}.iconfont-tag:before{content:"\e752"}.iconfont-group:before{content:"\e753"}.iconfont-all:before{content:"\e755"}.iconfont-hot:before{content:"\e758"}.iconfont-upload:before{content:"\e75d"}.iconfont-safe:before{content:"\e769"}.iconfont-sponsor:before{content:"\e77d"}.iconfont-goodsfavor:before{content:"\e794"}.iconfont-musicfill:before{content:"\e795"}.iconfont-emojilight:before{content:"\e7a1"}.iconfont-appreciate:before{content:"\e644"}.iconfont-edit:before{content:"\e649"}.iconfont-favor:before{content:"\e64c"}.iconfont-phone:before{content:"\e652"}.iconfont-circle:before{content:"\e7b1"}.iconfont-taxi:before{content:"\e65d"}.iconfont-time:before{content:"\e65f"}.iconfont-mail:before{content:"\e7bd"}.iconfont-warn:before{content:"\e663"}.iconfont-camera:before{content:"\e665"}.iconfont-comment:before{content:"\e667"}.iconfont-medal:before{content:"\e7c2"}.iconfont-like:before{content:"\e669"}.iconfont-notification:before{content:"\e66b"}.iconfont-news:before{content:"\e7c6"}.iconfont-ask:before{content:"\e7ca"}.iconfont-evaluate:before{content:"\e672"}.iconfont-wang:before{content:"\e678"}.iconfont-moneybag:before{content:"\e7d1"}.iconfont-cascades:before{content:"\e67c"}.iconfont-discover:before{content:"\e67e"}.iconfont-subscription:before{content:"\e7d4"}.iconfont-list:before{content:"\e682"}.iconfont-scan:before{content:"\e689"}.iconfont-community_light:before{content:"\e7d7"}.iconfont-question:before{content:"\e691"}.iconfont-pic:before{content:"\e69b"}.iconfont-we_fill_light:before{content:"\e7de"}.iconfont-skin_light:before{content:"\e7df"}.iconfont-refund:before{content:"\e6ac"}.iconfont-cart:before{content:"\e6af"}.iconfont-qrcode:before{content:"\e6b0"}.iconfont-remind:before{content:"\e6b2"}.iconfont-hot_light:before{content:"\e7eb"}.iconfont-profile:before{content:"\e6b7"}.iconfont-comment_light:before{content:"\e7ef"}.iconfont-appreciate_light:before{content:"\e7f0"}.iconfont-message:before{content:"\e6bc"}.iconfont-wang_light:before{content:"\e7f4"}.iconfont-vip:before{content:"\e6c3"}.iconfont-weibo:before{content:"\e6c4"}.iconfont-goods_favor_light:before{content:"\e7f8"}.iconfont-activity:before{content:"\e6c5"}.iconfont-goods_new_light:before{content:"\e7fa"}.iconfont-goods_light:before{content:"\e7fb"}.iconfont-medal_light:before{content:"\e7fd"}.iconfont-news_light:before{content:"\e801"}.iconfont-explore:before{content:"\e6d2"}.iconfont-present:before{content:"\e6d3"}.iconfont-global_light:before{content:"\e808"}.iconfont-game:before{content:"\e6df"}.iconfont-redpacket:before{content:"\e6e0"}.iconfont-similar:before{content:"\e6e2"}.iconfont-furniture:before{content:"\e814"}.iconfont-dress:before{content:"\e815"}.iconfont-sports:before{content:"\e817"}.iconfont-location:before{content:"\e819"}.iconfont-recharge:before{content:"\e6ed"}.iconfont-vipcard:before{content:"\e6ee"}.iconfont-voice:before{content:"\e6ef"}.iconfont-voicefill:before{content:"\e6f0"}.iconfont-wifi:before{content:"\e6f2"}.iconfont-wefill:before{content:"\e6f4"}.iconfont-we:before{content:"\e6f5"}/*# sourceMappingURL=iconfont.css.map */
|
||||
1
public/static/theme/css/iconfont.css.map
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sources":["iconfont.less"],"names":[],"mappings":"iBAgBA,WACE,YAAA,SACA,IAAS,kCAAqD,gBAAA,iCAAmD,eAAA,gCAAjH,mBAGF,UACE,YAAA,SAAA,gBACA,UAAA,KACA,WAAA,OACA,uBAAA,YACA,wBAAA,UAGY,sBACZ,QAAA,QAGU,oBACV,QAAA,QAGU,oBACV,QAAA,QAGU,oBACV,QAAA,QAGU,oBACV,QAAA,QAGU,oBACV,QAAA,QAGU,oBACV,QAAA,QAGU,oBACV,QAAA,QAGiB,2BACjB,QAAA,QAGa,uBACb,QAAA,QAGgB,0BAChB,QAAA,QAGY,sBACZ,QAAA,QAGoB,8BACpB,QAAA,QAGmB,6BACnB,QAAA,QAGa,uBACb,QAAA,QAGe,yBACf,QAAA,QAGc,wBACd,QAAA,QAGkB,4BAClB,QAAA,QAGY,sBACZ,QAAA,QAGiB,2BACjB,QAAA,QAGc,wBACd,QAAA,QAGe,yBACf,QAAA,QAGa,uBACb,QAAA,QAGkB,4BAClB,QAAA,QAGkB,4BAClB,QAAA,QAGgB,0BAChB,QAAA,QAGW,qBACX,QAAA,QAGiB,2BACjB,QAAA,QAGU,oBACV,QAAA,QAGY,sBACZ,QAAA,QAGY,sBACZ,QAAA,QAGiB,2BACjB,QAAA,QAGgB,0BAChB,QAAA,QAGW,qBACX,QAAA,QAGW,qBACX,QAAA,QAGa,uBACb,QAAA,QAGW,qBACX,QAAA,QAGW,qBACX,QAAA,QAGc,wBACd,QAAA,QAGY,sBACZ,QAAA,QAGe,yBACf,QAAA,QAGkB,4BAClB,QAAA,QAGiB,2BACjB,QAAA,QAGkB,4BAClB,QAAA,QAGkB,4BAClB,QAAA,QAGY,sBACZ,QAAA,QAGa,uBACb,QAAA,QAGa,uBACb,QAAA,QAGc,wBACd,QAAA,QAGY,sBACZ,QAAA,QAGY,sBACZ,QAAA,QAGY,sBACZ,QAAA,QAGY,sBACZ,QAAA,QAGc,wBACd,QAAA,QAGe,yBACf,QAAA,QAGa,uBACb,QAAA,QAGY,sBACZ,QAAA,QAGoB,8BACpB,QAAA,QAGY,sBACZ,QAAA,QAGW,qBACX,QAAA,QAGgB,0BAChB,QAAA,QAGY,sBACZ,QAAA,QAGgB,0BAChB,QAAA,QAGgB,0BAChB,QAAA,QAGgB,0BAChB,QAAA,QAGoB,8BACpB,QAAA,QAGY,sBACZ,QAAA,QAGY,sBACZ,QAAA,QAGuB,iCACvB,QAAA,QAGgB,0BAChB,QAAA,QAGW,qBACX,QAAA,QAGqB,+BACrB,QAAA,QAGkB,4BAClB,QAAA,QAGc,wBACd,QAAA,QAGY,sBACZ,QAAA,QAGc,wBACd,QAAA,QAGc,wBACd,QAAA,QAGiB,2BACjB,QAAA,QAGe,yBACf,QAAA,QAGqB,+BACrB,QAAA,QAGwB,kCACxB,QAAA,QAGe,yBACf,QAAA,QAGkB,4BAClB,QAAA,QAGW,qBACX,QAAA,QAGa,uBACb,QAAA,QAGyB,mCACzB,QAAA,QAGgB,0BAChB,QAAA,QAGuB,iCACvB,QAAA,QAGmB,6BACnB,QAAA,QAGmB,6BACnB,QAAA,QAGkB,4BAClB,QAAA,QAGe,yBACf,QAAA,QAGe,yBACf,QAAA,QAGoB,8BACpB,QAAA,QAGY,sBACZ,QAAA,QAGiB,2BACjB,QAAA,QAGe,yBACf,QAAA,QAGiB,2BACjB,QAAA,QAGa,uBACb,QAAA,QAGc,wBACd,QAAA,QAGgB,0BAChB,QAAA,QAGgB,0BAChB,QAAA,QAGe,yBACf,QAAA,QAGa,uBACb,QAAA,QAGiB,2BACjB,QAAA,QAGY,sBACZ,QAAA,QAGc,wBACd,QAAA,QAGU,oBACV,QAAA"}
|
||||
460
public/static/theme/css/iconfont.less
Normal file
@@ -0,0 +1,460 @@
|
||||
@charset "UTF-8";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
@font-face {
|
||||
font-family: iconfont;
|
||||
src: url('./font/iconfont.woff2?t=2021') format('woff2'), url('./font/iconfont.woff?t=2021') format('woff'), url('./font/iconfont.ttf?t=2021') format('truetype');
|
||||
}
|
||||
|
||||
.iconfont {
|
||||
font-family: iconfont, serif !important;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.iconfont-logo:before {
|
||||
content: "\e607";
|
||||
}
|
||||
|
||||
.iconfont-x7:before {
|
||||
content: "\e606";
|
||||
}
|
||||
|
||||
.iconfont-x2:before {
|
||||
content: "\e600";
|
||||
}
|
||||
|
||||
.iconfont-x1:before {
|
||||
content: "\e601";
|
||||
}
|
||||
|
||||
.iconfont-x5:before {
|
||||
content: "\e602";
|
||||
}
|
||||
|
||||
.iconfont-x4:before {
|
||||
content: "\e603";
|
||||
}
|
||||
|
||||
.iconfont-x6:before {
|
||||
content: "\e604";
|
||||
}
|
||||
|
||||
.iconfont-x3:before {
|
||||
content: "\e605";
|
||||
}
|
||||
|
||||
.iconfont-shoplight:before {
|
||||
content: "\e7b8";
|
||||
}
|
||||
|
||||
.iconfont-wxapp:before {
|
||||
content: "\e63c";
|
||||
}
|
||||
|
||||
.iconfont-yinliang:before {
|
||||
content: "\e87a";
|
||||
}
|
||||
|
||||
.iconfont-pick:before {
|
||||
content: "\e823";
|
||||
}
|
||||
|
||||
.iconfont-camerarotate:before {
|
||||
content: "\e6f9";
|
||||
}
|
||||
|
||||
.iconfont-phone_light:before {
|
||||
content: "\e826";
|
||||
}
|
||||
|
||||
.iconfont-light:before {
|
||||
content: "\e6fa";
|
||||
}
|
||||
|
||||
.iconfont-barcode:before {
|
||||
content: "\e6fb";
|
||||
}
|
||||
|
||||
.iconfont-change:before {
|
||||
content: "\e829";
|
||||
}
|
||||
|
||||
.iconfont-searchlist:before {
|
||||
content: "\e6fe";
|
||||
}
|
||||
|
||||
.iconfont-down:before {
|
||||
content: "\e703";
|
||||
}
|
||||
|
||||
.iconfont-countdown:before {
|
||||
content: "\e708";
|
||||
}
|
||||
|
||||
.iconfont-notice:before {
|
||||
content: "\e70a";
|
||||
}
|
||||
|
||||
.iconfont-upstage:before {
|
||||
content: "\e70f";
|
||||
}
|
||||
|
||||
.iconfont-brand:before {
|
||||
content: "\e713";
|
||||
}
|
||||
|
||||
.iconfont-choiceness:before {
|
||||
content: "\e715";
|
||||
}
|
||||
|
||||
.iconfont-warn_light:before {
|
||||
content: "\e841";
|
||||
}
|
||||
|
||||
.iconfont-creative:before {
|
||||
content: "\e719";
|
||||
}
|
||||
|
||||
.iconfont-new:before {
|
||||
content: "\e71e";
|
||||
}
|
||||
|
||||
.iconfont-cameraadd:before {
|
||||
content: "\e724";
|
||||
}
|
||||
|
||||
.iconfont-at:before {
|
||||
content: "\e853";
|
||||
}
|
||||
|
||||
.iconfont-mark:before {
|
||||
content: "\e731";
|
||||
}
|
||||
|
||||
.iconfont-file:before {
|
||||
content: "\e739";
|
||||
}
|
||||
|
||||
.iconfont-community:before {
|
||||
content: "\e741";
|
||||
}
|
||||
|
||||
.iconfont-calendar:before {
|
||||
content: "\e74a";
|
||||
}
|
||||
|
||||
.iconfont-cut:before {
|
||||
content: "\e74b";
|
||||
}
|
||||
|
||||
.iconfont-tag:before {
|
||||
content: "\e752";
|
||||
}
|
||||
|
||||
.iconfont-group:before {
|
||||
content: "\e753";
|
||||
}
|
||||
|
||||
.iconfont-all:before {
|
||||
content: "\e755";
|
||||
}
|
||||
|
||||
.iconfont-hot:before {
|
||||
content: "\e758";
|
||||
}
|
||||
|
||||
.iconfont-upload:before {
|
||||
content: "\e75d";
|
||||
}
|
||||
|
||||
.iconfont-safe:before {
|
||||
content: "\e769";
|
||||
}
|
||||
|
||||
.iconfont-sponsor:before {
|
||||
content: "\e77d";
|
||||
}
|
||||
|
||||
.iconfont-goodsfavor:before {
|
||||
content: "\e794";
|
||||
}
|
||||
|
||||
.iconfont-musicfill:before {
|
||||
content: "\e795";
|
||||
}
|
||||
|
||||
.iconfont-emojilight:before {
|
||||
content: "\e7a1";
|
||||
}
|
||||
|
||||
.iconfont-appreciate:before {
|
||||
content: "\e644";
|
||||
}
|
||||
|
||||
.iconfont-edit:before {
|
||||
content: "\e649";
|
||||
}
|
||||
|
||||
.iconfont-favor:before {
|
||||
content: "\e64c";
|
||||
}
|
||||
|
||||
.iconfont-phone:before {
|
||||
content: "\e652";
|
||||
}
|
||||
|
||||
.iconfont-circle:before {
|
||||
content: "\e7b1";
|
||||
}
|
||||
|
||||
.iconfont-taxi:before {
|
||||
content: "\e65d";
|
||||
}
|
||||
|
||||
.iconfont-time:before {
|
||||
content: "\e65f";
|
||||
}
|
||||
|
||||
.iconfont-mail:before {
|
||||
content: "\e7bd";
|
||||
}
|
||||
|
||||
.iconfont-warn:before {
|
||||
content: "\e663";
|
||||
}
|
||||
|
||||
.iconfont-camera:before {
|
||||
content: "\e665";
|
||||
}
|
||||
|
||||
.iconfont-comment:before {
|
||||
content: "\e667";
|
||||
}
|
||||
|
||||
.iconfont-medal:before {
|
||||
content: "\e7c2";
|
||||
}
|
||||
|
||||
.iconfont-like:before {
|
||||
content: "\e669";
|
||||
}
|
||||
|
||||
.iconfont-notification:before {
|
||||
content: "\e66b";
|
||||
}
|
||||
|
||||
.iconfont-news:before {
|
||||
content: "\e7c6";
|
||||
}
|
||||
|
||||
.iconfont-ask:before {
|
||||
content: "\e7ca";
|
||||
}
|
||||
|
||||
.iconfont-evaluate:before {
|
||||
content: "\e672";
|
||||
}
|
||||
|
||||
.iconfont-wang:before {
|
||||
content: "\e678";
|
||||
}
|
||||
|
||||
.iconfont-moneybag:before {
|
||||
content: "\e7d1";
|
||||
}
|
||||
|
||||
.iconfont-cascades:before {
|
||||
content: "\e67c";
|
||||
}
|
||||
|
||||
.iconfont-discover:before {
|
||||
content: "\e67e";
|
||||
}
|
||||
|
||||
.iconfont-subscription:before {
|
||||
content: "\e7d4";
|
||||
}
|
||||
|
||||
.iconfont-list:before {
|
||||
content: "\e682";
|
||||
}
|
||||
|
||||
.iconfont-scan:before {
|
||||
content: "\e689";
|
||||
}
|
||||
|
||||
.iconfont-community_light:before {
|
||||
content: "\e7d7";
|
||||
}
|
||||
|
||||
.iconfont-question:before {
|
||||
content: "\e691";
|
||||
}
|
||||
|
||||
.iconfont-pic:before {
|
||||
content: "\e69b";
|
||||
}
|
||||
|
||||
.iconfont-we_fill_light:before {
|
||||
content: "\e7de";
|
||||
}
|
||||
|
||||
.iconfont-skin_light:before {
|
||||
content: "\e7df";
|
||||
}
|
||||
|
||||
.iconfont-refund:before {
|
||||
content: "\e6ac";
|
||||
}
|
||||
|
||||
.iconfont-cart:before {
|
||||
content: "\e6af";
|
||||
}
|
||||
|
||||
.iconfont-qrcode:before {
|
||||
content: "\e6b0";
|
||||
}
|
||||
|
||||
.iconfont-remind:before {
|
||||
content: "\e6b2";
|
||||
}
|
||||
|
||||
.iconfont-hot_light:before {
|
||||
content: "\e7eb";
|
||||
}
|
||||
|
||||
.iconfont-profile:before {
|
||||
content: "\e6b7";
|
||||
}
|
||||
|
||||
.iconfont-comment_light:before {
|
||||
content: "\e7ef";
|
||||
}
|
||||
|
||||
.iconfont-appreciate_light:before {
|
||||
content: "\e7f0";
|
||||
}
|
||||
|
||||
.iconfont-message:before {
|
||||
content: "\e6bc";
|
||||
}
|
||||
|
||||
.iconfont-wang_light:before {
|
||||
content: "\e7f4";
|
||||
}
|
||||
|
||||
.iconfont-vip:before {
|
||||
content: "\e6c3";
|
||||
}
|
||||
|
||||
.iconfont-weibo:before {
|
||||
content: "\e6c4";
|
||||
}
|
||||
|
||||
.iconfont-goods_favor_light:before {
|
||||
content: "\e7f8";
|
||||
}
|
||||
|
||||
.iconfont-activity:before {
|
||||
content: "\e6c5";
|
||||
}
|
||||
|
||||
.iconfont-goods_new_light:before {
|
||||
content: "\e7fa";
|
||||
}
|
||||
|
||||
.iconfont-goods_light:before {
|
||||
content: "\e7fb";
|
||||
}
|
||||
|
||||
.iconfont-medal_light:before {
|
||||
content: "\e7fd";
|
||||
}
|
||||
|
||||
.iconfont-news_light:before {
|
||||
content: "\e801";
|
||||
}
|
||||
|
||||
.iconfont-explore:before {
|
||||
content: "\e6d2";
|
||||
}
|
||||
|
||||
.iconfont-present:before {
|
||||
content: "\e6d3";
|
||||
}
|
||||
|
||||
.iconfont-global_light:before {
|
||||
content: "\e808";
|
||||
}
|
||||
|
||||
.iconfont-game:before {
|
||||
content: "\e6df";
|
||||
}
|
||||
|
||||
.iconfont-redpacket:before {
|
||||
content: "\e6e0";
|
||||
}
|
||||
|
||||
.iconfont-similar:before {
|
||||
content: "\e6e2";
|
||||
}
|
||||
|
||||
.iconfont-furniture:before {
|
||||
content: "\e814";
|
||||
}
|
||||
|
||||
.iconfont-dress:before {
|
||||
content: "\e815";
|
||||
}
|
||||
|
||||
.iconfont-sports:before {
|
||||
content: "\e817";
|
||||
}
|
||||
|
||||
.iconfont-location:before {
|
||||
content: "\e819";
|
||||
}
|
||||
|
||||
.iconfont-recharge:before {
|
||||
content: "\e6ed";
|
||||
}
|
||||
|
||||
.iconfont-vipcard:before {
|
||||
content: "\e6ee";
|
||||
}
|
||||
|
||||
.iconfont-voice:before {
|
||||
content: "\e6ef";
|
||||
}
|
||||
|
||||
.iconfont-voicefill:before {
|
||||
content: "\e6f0";
|
||||
}
|
||||
|
||||
.iconfont-wifi:before {
|
||||
content: "\e6f2";
|
||||
}
|
||||
|
||||
.iconfont-wefill:before {
|
||||
content: "\e6f4";
|
||||
}
|
||||
|
||||
.iconfont-we:before {
|
||||
content: "\e6f5";
|
||||
}
|
||||
1
public/static/theme/css/login.css
Normal file
@@ -0,0 +1 @@
|
||||
@charset "UTF-8";body,html{height:100%;display:block}.login-container,body{vertical-align:middle;background-size:cover;background-repeat:no-repeat;background-position:center center;transition:background-image 1s linear;-o-transition:background-image 1s linear;-moz-transition:background-image 1s linear;-webkit-transition:background-image 1s linear}.login-container{height:100%}.login-container .header{top:0;left:0;width:100%;height:48px;position:absolute;text-shadow:#000 .1em .1em .1em}.login-container .header .title{color:#fff;float:left;font-size:18px;line-height:48px;text-indent:40px;letter-spacing:1px}.login-container .header .title span{font-size:10px;padding-left:5px}.login-container .header a,.login-container .header a:focus,.login-container .header a:hover{color:#fff;letter-spacing:1px;text-decoration:none}.login-container .header ul{float:right}.login-container .header ul li{float:left;line-height:47px;margin-left:10px}.login-container form{top:50%;left:50%;width:300px;position:absolute;margin-top:-250px;margin-left:-150px}.login-container form h2{color:#fff;padding:20px 0;font-size:25px;text-align:center;font-weight:700;letter-spacing:3px;text-shadow:#000 .05em .05em .05em}.login-container form ul li{margin-top:20px;text-shadow:#000 .1em .1em .1em}.login-container form ul li.verify label{width:200px}.login-container form ul li.verify input.layui-input{text-transform:uppercase}.login-container form ul li.verify img{width:95px;height:44px;cursor:pointer;position:absolute;margin-left:5px;border-radius:3px;box-shadow:0 2px 5px 0 rgba(0,0,0,.1)}.login-container form ul li i.layui-icon{color:#fff;font-size:18px;position:absolute;padding:14px 15px 13px 20px}.login-container form ul li input{color:#fff;height:45px;padding:0 15px;font-size:14px;line-height:1em;text-indent:35px;border:#DDD!important;border-radius:3px;letter-spacing:2px;background:rgba(0,0,0,.12);text-shadow:#000 .1em .1em .1em;-webkit-text-fill-color:#fff!important;box-shadow:0 2px 3px 0 rgba(0,0,0,.3) inset!important}.login-container form ul li input:-webkit-autofill,.login-container form ul li input:-webkit-autofill:active,.login-container form ul li input:-webkit-autofill:focus,.login-container form ul li input:-webkit-autofill:hover,.login-container form ul li input:active,.login-container form ul li input:focus,.login-container form ul li input:hover{border:#DDD!important;text-shadow:#000 .1em .1em .1em;box-shadow:0 2px 4px 0 rgba(0,0,0,.4) inset!important;-webkit-text-fill-color:#fff!important;-webkit-transition-delay:9999s!important;-webkit-transition:color 9999s ease-out,background-color 9999s ease-out!important}.login-container form ul li span{letter-spacing:1px;color:#ff0!important}.login-container form ul li button{color:#333!important;height:45px!important;border:none!important;background:#fff!important;border-radius:3px!important;letter-spacing:1px!important;box-shadow:0 15px 30px 0 hsla(0,0%,100%,.25) inset,0 2px 7px 0 rgba(0,0,0,.2)}.login-container form ul li button:hover{opacity:1}.login-container .footer{left:0;bottom:0;color:#fff;width:100%;position:absolute;text-align:center;line-height:30px;padding-bottom:10px;text-shadow:#000 .1em .1em .1em}.login-container .footer a,.login-container .footer span{color:#fff}.login-container .footer a:hover{color:#ccc}/*# sourceMappingURL=login.css.map */
|
||||
1
public/static/theme/css/login.css.map
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sources":["login.less","_config.less"],"names":[],"mappings":"iBAiBA,KAAM,KACJ,OAAA,KACA,QAAA,MAGI,iBAAN,KACE,eAAA,OACA,gBAAA,MACA,kBAAA,UACA,oBAAA,OAAA,OCkEA,WAAA,iBAAA,GAAA,OACA,cAAA,iBAAA,GAAA,OACA,gBAAA,iBAAA,GAAA,OACA,mBAAA,iBAAA,GAAA,ODjEF,iBACE,OAAA,KAEA,yBACE,IAAA,EACA,KAAA,EACA,MAAA,KACA,OAAA,KACA,SAAA,SACA,YAAA,KAAA,KAAA,KAAA,KAEA,gCACE,MAAA,KACA,MAAA,KACA,UAAA,KACA,YAAA,KACA,YAAA,KACA,eAAA,IAEA,qCACE,UAAA,KACA,aAAA,IAIJ,2BACM,iCAAS,iCACX,MAAA,KACA,eAAA,IACA,gBAAA,KAIJ,4BACE,MAAA,MAEA,+BACE,MAAA,KACA,YAAA,KACA,YAAA,KAKN,sBACE,IAAA,IACA,KAAA,IACA,MAAA,MACA,SAAA,SACA,WAAA,OACA,YAAA,OAEA,yBACE,MAAA,KACA,QAAA,KAAA,EACA,UAAA,KACA,WAAA,OACA,YAAA,IACA,eAAA,IACA,YAAA,KAAA,MAAA,MAAA,MAGC,4BACD,WAAA,KACA,YAAA,KAAA,KAAA,KAAA,KAGE,yCACE,MAAA,MAGG,qDACH,eAAA,UAGF,uCACE,MAAA,KACA,OAAA,KACA,OAAA,QACA,SAAA,SACA,YAAA,IACA,cAAA,IACA,WAAA,EAAA,IAAA,IAAA,EAAA,eAIH,yCACC,MAAA,KACA,UAAA,KACA,SAAA,SACA,QAAA,KAAA,KAAA,KAAA,KAGF,kCACE,MAAA,KACA,OAAA,KACA,QAAA,EAAA,KACA,UAAA,KACA,YAAA,IACA,YAAA,KACA,OAAA,eACA,cAAA,IACA,eAAA,IACA,WAAA,gBACA,YAAA,KAAA,KAAA,KAAA,KACA,wBAAA,eACA,WAAA,EAAA,IAAA,IAAA,EAAA,eAAA,gBAGC,mDAC2C,0DAA1B,yDADoB,yDADnB,yCAAT,wCAAT,wCAGC,OAAA,eACA,YAAA,KAAA,KAAA,KAAA,KACA,WAAA,EAAA,IAAA,IAAA,EAAA,eAAA,gBACA,wBAAA,eACA,yBAAA,gBACA,mBAAA,MAAA,MAAA,SAAA,iBAAA,MAAA,mBAIJ,iCACE,eAAA,IACA,MAAA,eAGF,mCACE,MAAA,eACA,OAAA,eACA,OAAA,eACA,WAAA,eACA,cAAA,cACA,eAAA,cACA,WAAA,EAAA,KAAA,KAAA,EAAA,oBAAA,MAAA,EAAA,IAAA,IAAA,EAAA,eAEC,yCACC,QAAA,EAMR,yBACE,KAAA,EACA,OAAA,EACA,MAAA,KACA,MAAA,KACA,SAAA,SACA,WAAA,OACA,YAAA,KACA,eAAA,KACA,YAAA,KAAA,KAAA,KAAA,KAEA,2BAAG,8BACD,MAAA,KAGD,iCACC,MAAA"}
|
||||
191
public/static/theme/css/login.less
Normal file
@@ -0,0 +1,191 @@
|
||||
@charset "UTF-8";
|
||||
@import "_config.less";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
body, html {
|
||||
height: 100%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
body, .login-container {
|
||||
vertical-align: middle;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center center;
|
||||
#defaTransition(1s, background-image);
|
||||
}
|
||||
|
||||
.login-container {
|
||||
height: 100%;
|
||||
|
||||
.header {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 48px;
|
||||
position: absolute;
|
||||
text-shadow: #000 .1em .1em .1em;
|
||||
|
||||
.title {
|
||||
color: #fff;
|
||||
float: left;
|
||||
font-size: 18px;
|
||||
line-height: 48px;
|
||||
text-indent: 40px;
|
||||
letter-spacing: 1px;
|
||||
|
||||
span {
|
||||
font-size: 10px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
&, &:focus, &:hover {
|
||||
color: #fff;
|
||||
letter-spacing: 1px;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
float: right;
|
||||
|
||||
li {
|
||||
float: left;
|
||||
line-height: 47px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
form {
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
width: 300px;
|
||||
position: absolute;
|
||||
margin-top: -250px;
|
||||
margin-left: -150px;
|
||||
|
||||
h2 {
|
||||
color: #fff;
|
||||
padding: 20px 0;
|
||||
font-size: 25px;
|
||||
text-align: center;
|
||||
font-weight: 700;
|
||||
letter-spacing: 3px;
|
||||
text-shadow: #000 .05em .05em .05em;
|
||||
}
|
||||
|
||||
ul li {
|
||||
margin-top: 20px;
|
||||
text-shadow: #000 .1em .1em .1em;
|
||||
|
||||
&.verify {
|
||||
label {
|
||||
width: 200px;
|
||||
}
|
||||
|
||||
input.layui-input {
|
||||
text-transform: uppercase
|
||||
}
|
||||
|
||||
img {
|
||||
width: 95px;
|
||||
height: 44px;
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
margin-left: 5px;
|
||||
border-radius: @BoxBorderRadius;
|
||||
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
|
||||
}
|
||||
}
|
||||
|
||||
i.layui-icon {
|
||||
color: #fff;
|
||||
font-size: 18px;
|
||||
position: absolute;
|
||||
padding: 14px 15px 13px 20px;
|
||||
}
|
||||
|
||||
input {
|
||||
color: #fff;
|
||||
height: 45px;
|
||||
padding: 0 15px;
|
||||
font-size: 14px;
|
||||
line-height: 1em;
|
||||
text-indent: 35px;
|
||||
border: #DDD !important;
|
||||
border-radius: @BoxBorderRadius;
|
||||
letter-spacing: 2px;
|
||||
background: rgba(0, 0, 0, .12);
|
||||
text-shadow: #000 .1em .1em .1em;
|
||||
-webkit-text-fill-color: #fff !important;
|
||||
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .3) inset !important;
|
||||
|
||||
&:hover, &:focus, &:active,
|
||||
&:-webkit-autofill, &:-webkit-autofill:hover,
|
||||
&:-webkit-autofill:focus, &:-webkit-autofill:active {
|
||||
border: #DDD !important;
|
||||
text-shadow: #000 .1em .1em .1em;
|
||||
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .4) inset !important;
|
||||
-webkit-text-fill-color: #fff !important;
|
||||
-webkit-transition-delay: 9999s !important;
|
||||
-webkit-transition: color 9999s ease-out, background-color 9999s ease-out !important;
|
||||
}
|
||||
}
|
||||
|
||||
span {
|
||||
letter-spacing: 1px;
|
||||
color: #ff0 !important;
|
||||
}
|
||||
|
||||
button {
|
||||
color: #333 !important;
|
||||
height: 45px !important;
|
||||
border: none !important;
|
||||
background: #fff !important;
|
||||
border-radius: @BoxBorderRadius !important;
|
||||
letter-spacing: 1px !important;
|
||||
box-shadow: 0 15px 30px 0 hsla(0, 0%, 100%, .25) inset, 0 2px 7px 0 rgba(0, 0, 0, .2);
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.footer {
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
color: #fff;
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
text-align: center;
|
||||
line-height: 30px;
|
||||
padding-bottom: 10px;
|
||||
text-shadow: #000 .1em .1em .1em;
|
||||
|
||||
a, span {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #ccc
|
||||
}
|
||||
}
|
||||
}
|
||||
1
public/static/theme/css/mobile.css
Normal file
1
public/static/theme/css/mobile.css.map
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"sources":["mobile.less"],"names":[],"mappings":"iBAgBA,oBACE,MAAA,IACA,OAAA,IAGF,0BACE,WAAA,eAGF,0BACE,iBAAA,eAGF,EACE,OAAA,EACA,QAAA,EACA,QAAA,EACA,WAAA,YAGF,KAAM,KACJ,UAAA,KAGF,KACE,YAAA,KACA,yBAAA,KAGF,KACE,OAAA,EAGF,KACE,QAAA,MAGF,GACE,OAAA,MAAA,EACA,UAAA,IAGF,GACE,SAAA,QACA,WAAA,YACA,OAAA,EAGF,IACE,UAAA,IACA,YAAA,UAGF,EACE,iBAAA,YAGE,YACF,cAAA,KACA,gBAAA,UACA,gBAAA,UAAA,OAGF,EAAG,OACD,YAAA,OAGF,KAAM,IAAK,KACT,UAAA,IACA,YAAA,UAGF,MACE,UAAA,IAGF,IAAK,IACH,SAAA,SACA,eAAA,SACA,UAAA,IACA,YAAA,EAGF,IACE,OAAA,OAGF,IACE,IAAA,MAGF,IACE,aAAA,KAGF,OAAQ,MAAO,SAAU,OAAQ,SAC/B,OAAA,EACA,UAAA,KACA,YAAA,QACA,YAAA,KAGF,OAAQ,MACN,SAAA,QAGF,OAAQ,OACN,eAAA,KAGF,cAAe,aAAc,cAAe,OAC1C,mBAAA,OAGW,gCAAgC,+BAAiC,gCAA0B,yBACtG,QAAA,EACA,aAAA,KAGW,6BAA6B,4BAA8B,6BAAuB,sBAC7F,QAAA,IAAA,OAAA,WAGF,SACE,QAAA,MAAA,MAAA,OAGF,OACE,QAAA,MACA,WAAA,WACA,QAAA,EACA,UAAA,KACA,MAAA,QACA,YAAA,OAGF,SACE,eAAA,SAGF,SACE,SAAA,KAGF,gBAAiB,aACf,WAAA,WACA,QAAA,EAGW,yCAA0C,yCACrD,OAAA,KAGF,cACE,eAAA,KACA,mBAAA,UAGW,yCACX,mBAAA,KAGF,6BACE,KAAA,QACA,mBAAA,OAGF,QACE,QAAA,MAGF,QACE,QAAA,UAGF,SAAU,SACR,QAAA,KAGF,EACE,gBAAA,KAGgE,gEAChE,KACE,UAAA,gBAI8D,gEAChE,KACE,UAAA,gBAI8D,gEAChE,KACE,UAAA,kBAI8D,gEAChE,KACE,UAAA,kBAI8D,gEAChE,KACE,UAAA,kBAIsC,yCACxC,KACE,UAAA,gBAIJ,QACE,WAAA,MACA,WAAA,OAEA,aACE,QAAA,MAAA,MACA,cAAA,MACA,WAAA,KACA,MAAA,KACA,UAAA,MAKJ,WACE,SAAA,SACA,QAAA,MACA,OAAA,IAAA,KACA,MAAA,IACA,MAAA,KACA,cAAA,SAEA,iBACE,SAAA,SACA,IAAA,EACA,QAAA,aACA,MAAA,OACA,OAAA,OACA,cAAA,IACA,WAAA,KACA,MAAA,KACA,QAAA,IACA,WAAA,OACA,UAAA,MACA,YAAA,OAGF,oBACE,SAAA,SACA,KAAA,OACA,QAAA,aACA,QAAA,MAAA,MAAA,MACA,UAAA,KACA,OAAA,IAAA,MAAA,KACA,cAAA,OACA,WAAA,KACA,UAAA,MACA,YAAA,MAGI,wBAAc,yBAClB,SAAA,SACA,IAAA,MACA,KAAA,OACA,MAAA,EACA,OAAA,EACA,aAAA,YAAA,KAAA,YAAA,YACA,aAAA,MACA,aAAA,MAAA,MAAA,MAAA,EACA,QAAA,IAGI,wBACJ,YAAA,IACA,aAAA,YAAA,KAAA,YAAA,YAIJ,WACE,YAAA,SACA,IAAS,yCACT,IAAS,+CAA4F,4BAAA,kkEAC1D,eAAA,yCAAO,mBADlD,kDAAA,cAIF,MACE,YAAA,mBACA,UAAA,KACA,WAAA,OACA,uBAAA,YACA,wBAAA,UAEM,kBACJ,QAAA,QAGK,mBACL,QAAA,QAGM,oBACN,QAAA"}
|
||||
329
public/static/theme/css/mobile.less
Normal file
@@ -0,0 +1,329 @@
|
||||
@charset "UTF-8";
|
||||
|
||||
// +----------------------------------------------------------------------
|
||||
// | Static Plugin for ThinkAdmin
|
||||
// +----------------------------------------------------------------------
|
||||
// | 版权所有 2014~2024 ThinkAdmin [ thinkadmin.top ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | 官方网站: https://thinkadmin.top
|
||||
// +----------------------------------------------------------------------
|
||||
// | 开源协议 ( https://mit-license.org )
|
||||
// | 免责声明 ( https://thinkadmin.top/disclaimer )
|
||||
// +----------------------------------------------------------------------
|
||||
// | gitee 代码仓库:https://gitee.com/zoujingli/think-plugs-static
|
||||
// | github 代码仓库:https://github.com/zoujingli/think-plugs-static
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 3px;
|
||||
height: 3px
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: #ccc !important
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: #666 !important
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
outline: 0;
|
||||
box-sizing: content-box
|
||||
}
|
||||
|
||||
body, html {
|
||||
font-size: 20px
|
||||
}
|
||||
|
||||
html {
|
||||
line-height: 1.15;
|
||||
-webkit-text-size-adjust: 100%
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0
|
||||
}
|
||||
|
||||
main {
|
||||
display: block
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin: .67em 0;
|
||||
font-size: 2em
|
||||
}
|
||||
|
||||
hr {
|
||||
overflow: visible;
|
||||
box-sizing: content-box;
|
||||
height: 0
|
||||
}
|
||||
|
||||
pre {
|
||||
font-size: 1em;
|
||||
font-family: monospace
|
||||
}
|
||||
|
||||
a {
|
||||
background-color: transparent
|
||||
}
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: none;
|
||||
text-decoration: underline;
|
||||
text-decoration: underline dotted
|
||||
}
|
||||
|
||||
b, strong {
|
||||
font-weight: bolder
|
||||
}
|
||||
|
||||
code, kbd, samp {
|
||||
font-size: 1em;
|
||||
font-family: monospace
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 80%
|
||||
}
|
||||
|
||||
sub, sup {
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
font-size: 75%;
|
||||
line-height: 0
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -.25em
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -.5em
|
||||
}
|
||||
|
||||
img {
|
||||
border-style: none
|
||||
}
|
||||
|
||||
button, input, optgroup, select, textarea {
|
||||
margin: 0;
|
||||
font-size: 100%;
|
||||
font-family: inherit;
|
||||
line-height: 1.15
|
||||
}
|
||||
|
||||
button, input {
|
||||
overflow: visible
|
||||
}
|
||||
|
||||
button, select {
|
||||
text-transform: none
|
||||
}
|
||||
|
||||
[type=button], [type=reset], [type=submit], button {
|
||||
-webkit-appearance: button
|
||||
}
|
||||
|
||||
[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
|
||||
padding: 0;
|
||||
border-style: none
|
||||
}
|
||||
|
||||
[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
|
||||
outline: 1px dotted ButtonText
|
||||
}
|
||||
|
||||
fieldset {
|
||||
padding: .35em .75em .625em
|
||||
}
|
||||
|
||||
legend {
|
||||
display: table;
|
||||
box-sizing: border-box;
|
||||
padding: 0;
|
||||
max-width: 100%;
|
||||
color: inherit;
|
||||
white-space: normal
|
||||
}
|
||||
|
||||
progress {
|
||||
vertical-align: baseline
|
||||
}
|
||||
|
||||
textarea {
|
||||
overflow: auto
|
||||
}
|
||||
|
||||
[type=checkbox], [type=radio] {
|
||||
box-sizing: border-box;
|
||||
padding: 0
|
||||
}
|
||||
|
||||
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
|
||||
height: auto
|
||||
}
|
||||
|
||||
[type=search] {
|
||||
outline-offset: -2px;
|
||||
-webkit-appearance: textfield
|
||||
}
|
||||
|
||||
[type=search]::-webkit-search-decoration {
|
||||
-webkit-appearance: none
|
||||
}
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
font: inherit;
|
||||
-webkit-appearance: button
|
||||
}
|
||||
|
||||
details {
|
||||
display: block
|
||||
}
|
||||
|
||||
summary {
|
||||
display: list-item
|
||||
}
|
||||
|
||||
[hidden], template {
|
||||
display: none
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 320px) and (min-height: 480px) {
|
||||
html {
|
||||
font-size: 20px !important
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 320px) and (min-height: 568px) {
|
||||
html {
|
||||
font-size: 20px !important
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 360px) and (min-height: 640px) {
|
||||
html {
|
||||
font-size: 22.5px !important
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 375px) and (min-height: 667px) {
|
||||
html {
|
||||
font-size: 23.5px !important
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 414px) and (min-height: 736px) {
|
||||
html {
|
||||
font-size: 25.9px !important
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 736px) {
|
||||
html {
|
||||
font-size: 46px !important
|
||||
}
|
||||
}
|
||||
|
||||
.header {
|
||||
margin-top: .4rem;
|
||||
text-align: center;
|
||||
|
||||
span {
|
||||
padding: .1rem .2rem;
|
||||
border-radius: .5rem;
|
||||
background: #999;
|
||||
color: #fff;
|
||||
font-size: .6rem
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.container {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin: 5vw auto;
|
||||
width: 90%;
|
||||
color: #333;
|
||||
text-overflow: ellipsis;
|
||||
|
||||
.logo {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
display: inline-block;
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
border-radius: 50%;
|
||||
background: #098;
|
||||
color: #fff;
|
||||
content: 'A';
|
||||
text-align: center;
|
||||
font-size: .8rem;
|
||||
line-height: 2.5rem
|
||||
}
|
||||
|
||||
.content {
|
||||
position: relative;
|
||||
left: 3.4rem;
|
||||
display: inline-block;
|
||||
padding: .8rem .8rem .8rem;
|
||||
max-width: 54vw;
|
||||
border: 1px solid #ccc;
|
||||
border-radius: .25rem;
|
||||
background: #fff;
|
||||
font-size: .7rem;
|
||||
line-height: 1.5em
|
||||
}
|
||||
|
||||
.arrow:after, .arrow:before {
|
||||
position: absolute;
|
||||
top: .8rem;
|
||||
left: -.4rem;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-color: transparent #ccc transparent transparent;
|
||||
border-style: solid;
|
||||
border-width: .4rem .4rem .4rem 0;
|
||||
content: ' '
|
||||
}
|
||||
|
||||
.arrow:after {
|
||||
margin-left: 1px;
|
||||
border-color: transparent #fff transparent transparent
|
||||
}
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "iconfont";
|
||||
src: url('./icon/iconfont.eot?t=1543820027953'); /* IE9 */
|
||||
src: url('./icon/iconfont.eot?t=1543820027953#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAYEAAsAAAAACPgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADMAAABCsP6z7U9TLzIAAAE8AAAARAAAAFY8n0psY21hcAAAAYAAAABiAAABnLYzIwJnbHlmAAAB5AAAAhwAAAK0nMGKyGhlYWQAAAQAAAAALwAAADYTdSvzaGhlYQAABDAAAAAcAAAAJAfeA4VobXR4AAAETAAAAA4AAAAQEAAAAGxvY2EAAARcAAAACgAAAAoB3gDcbWF4cAAABGgAAAAeAAAAIAESAGJuYW1lAAAEiAAAAUUAAAJtPlT+fXBvc3QAAAXQAAAANAAAAEbbmnlReJxjYGRgYOBikGPQYWB0cfMJYeBgYGGAAJAMY05meiJQDMoDyrGAaQ4gZoOIAgCKIwNPAHicY2BkYWCcwMDKwMHUyXSGgYGhH0IzvmYwYuRgYGBiYGVmwAoC0lxTGByeab6oYm7438AQw9zA0AAUZgTJAQDpuAyIeJxjYGBgZWBgYAZiHSBmYWBgzGBgZACBJKAoI1icmYELLM7CYAbkcwAhEwPDM81nAS+q/v9HZoEBI1gFB5DFBDGBkY1hFPCASRMojxkUahAMDssACAaJv6iCYAZGAOpYFP4AAHicTZG/bhNBEMZn7s/u3u3lkr2173ARY+fscxDJKb5zbCGiS4GoQpCwCBUBKQUVD+EHyAOA+1SpaKIUobTkAmqwBfELUFBQJBIcrA9C0uzM/DQz+r4dMAB+f9WP9RAE3IFt2ANA6uJddHEZS/59TPzb2IoViLG1maEC3V6z65dFibR6JMZuL8NePG/JMKhiuUSCf3TzmgYu4q/zhVCkXqXipSJcOL9kZSttbiAmYWqVGequlO47JrhOG6uIq02KXNC1drtUsN093Nst0NMXiPva51PuYEWcebcW+Okbk+FG4yxMGPnELe/nd8/iX0xtUZjLT+K1x1UiXI00XnbvHXwkuivI1vHB86NtRdF8ePLq9XsAmP/DwAB9ABwCaEAbwIyg1YWeDwEpElUSoD7IpHC/Em2KTje9WWgwzWemifXpFOummc+mY2QqXozH+YXibN92HOk4M6sIg5udajJSHeMbE9oRt/OBzbmNxXudA+j/9Qql9pG6WrTiopJSxaTXzLATtahJYk3JyjBNArOKJSJjddb5kZSPv+YSP/AzjNSdwsJboFgnwhPRrElZDz3kS1IuVfIflkMYY9Rg6DDD+Ebkomaur5v55WiUXyprdLRzuEUl1+iDYX+SzwjB+mSCdZJqzyyvJvMPsibtt3Ytqtn9oaEZlo0dxg1tSDjjmFGNS7p1uHO1bYR0vl9blKSdknw2udrZH/4ByxuITHicY2BkYGAAYp+dxUvi+W2+MnCzMIDADa3PvxH0/wYWBuYGIJeDgQkkCgBNSwu9AHicY2BkYGBu+N/AEMPCAAJAkpEBFbAAAEcKAm14nGNhYGBgQcIAALAAEQAAAAAAAACEANwBWgAAeJxjYGRgYGBhCANiEGACYi4gZGD4D+YzAAAReAF1AAB4nGWPTU7DMBCFX/oHpBKqqGCH5AViASj9EatuWFRq911036ZOmyqJI8et1ANwHo7ACTgC3IA78EgnmzaWx9+8eWNPANzgBx6O3y33kT1cMjtyDRe4F65TfxBukF+Em2jjVbhF/U3YxzOmwm10YXmD17hi9oR3YQ8dfAjXcI1P4Tr1L+EG+Vu4iTv8CrfQ8erCPuZeV7iNRy/2x1YvnF6p5UHFockikzm/gple75KFrdLqnGtbxCZTg6BfSVOdaVvdU+zXQ+ciFVmTqgmrOkmMyq3Z6tAFG+fyUa8XiR6EJuVYY/62xgKOcQWFJQ6MMUIYZIjK6Og7VWb0r7FDwl57Vj3N53RbFNT/c4UBAvTPXFO6stJ5Ok+BPV8bUnV0K27LnpQ0kV7NSRKyQl7WtlRC6gE2ZVeOEXpc0Yk/KGdI/wAJWm7IAAAAeJxjYGKAAC4G7ICFkYmRmZGFkZWBozIzLyczMS+dvSoxryQTSGcnZhZnZBoxMAAAjd8JOg==') format('woff'),
|
||||
url('./icon/iconfont.ttf?t=1543820027953') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/ url('./icon/iconfont.svg?t=1543820027953#iconfont') format('svg'); /* iOS 4.1- */
|
||||
}
|
||||
|
||||
.icon {
|
||||
font-family: "iconfont" !important;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
|
||||
&-play:before {
|
||||
content: "\e650"
|
||||
}
|
||||
|
||||
&-pause:before {
|
||||
content: "\e629"
|
||||
}
|
||||
|
||||
&-volume:before {
|
||||
content: "\e87a"
|
||||
}
|
||||
}
|
||||
9
public/static/theme/css/package.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"name": "theme",
|
||||
"version": "1.0.0",
|
||||
"description": "ThinkAdmin v6 theme less-style build",
|
||||
"scripts": {
|
||||
"install": "npm install less less-plugin-clean-css -g",
|
||||
"build": "lessc --clean-css --source-map login.less login.css && lessc --clean-css --source-map mobile.less mobile.css && lessc --clean-css --source-map console.less console.css && lessc --clean-css --source-map iconfont.less iconfont.css"
|
||||
}
|
||||
}
|
||||
21
public/static/theme/err/404.html
Normal file
@@ -0,0 +1,21 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<title>该页面不存在</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<link rel="stylesheet" type="text/css" href="__ROOT__/static/theme/err/404/reset.css">
|
||||
<link rel="stylesheet" type="text/css" href="__ROOT__/static/theme/err/404/style.css">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=0.6">
|
||||
</head>
|
||||
<body>
|
||||
<div class="system">
|
||||
<img alt="404" src="__ROOT__/static/theme/err/404/404.png">
|
||||
<div class="title">
|
||||
<h2>页面走丢了...</h2>
|
||||
<h4>远方的朋友你好!非常抱歉,您所请求的页面不存在!</h4>
|
||||
<h4>请仔细检查您输入的网址是否正确。</h4>
|
||||
<p><a style="color:#00F7DE;font-size:18px" href="{:url('@index')}">回到首页</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
public/static/theme/err/404/404.png
Normal file
|
After Width: | Height: | Size: 43 KiB |
225
public/static/theme/err/404/reset.css
Normal file
@@ -0,0 +1,225 @@
|
||||
@charset "utf-8";
|
||||
|
||||
* {
|
||||
word-wrap: break-word
|
||||
}
|
||||
|
||||
html, body, h1, h2, h3, h4, h5, h6, hr, p, iframe, dl, dt, dd, ul, ol, li, pre, form, button, input, textarea, th, td, fieldset {
|
||||
color: #666;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
ul, ol, dl {
|
||||
list-style-type: none
|
||||
}
|
||||
|
||||
html, body {
|
||||
*position: static
|
||||
}
|
||||
|
||||
html {
|
||||
font-family: sans-serif;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
-ms-text-size-adjust: 100%
|
||||
}
|
||||
|
||||
address, caption, cite, code, dfn, em, th, var {
|
||||
font-style: normal;
|
||||
font-weight: 400
|
||||
}
|
||||
|
||||
input, button, textarea, select, optgroup, option {
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
font-style: inherit;
|
||||
font-weight: inherit
|
||||
}
|
||||
|
||||
input, button {
|
||||
overflow: visible;
|
||||
vertical-align: middle;
|
||||
outline: none
|
||||
}
|
||||
|
||||
body, th, td, button, input, select, textarea {
|
||||
font-family: "Microsoft Yahei", "Hiragino Sans GB", "Helvetica Neue", Helvetica, tahoma, arial, Verdana, sans-serif, "WenQuanYi Micro Hei", "\5B8B\4F53";
|
||||
font-size: 12px;
|
||||
color: #333;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale
|
||||
}
|
||||
|
||||
body {
|
||||
line-height: 1.6;
|
||||
background: #7395ff;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-size: 100%
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
a, area {
|
||||
outline: none;
|
||||
blr: expression(this.onFocus=this.blur())
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
cursor: pointer
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
outline: none
|
||||
}
|
||||
|
||||
a.ie6:hover {
|
||||
zoom: 1
|
||||
}
|
||||
|
||||
a:focus {
|
||||
outline: none
|
||||
}
|
||||
|
||||
a:hover, a:active {
|
||||
outline: none
|
||||
}
|
||||
|
||||
:focus {
|
||||
outline: none
|
||||
}
|
||||
|
||||
sub, sup {
|
||||
vertical-align: baseline
|
||||
}
|
||||
|
||||
button, input[type="button"], input[type="submit"] {
|
||||
line-height: normal !important;
|
||||
}
|
||||
|
||||
/*img*/
|
||||
img {
|
||||
border: 0;
|
||||
vertical-align: middle
|
||||
}
|
||||
|
||||
a img, img {
|
||||
-ms-interpolation-mode: bicubic
|
||||
}
|
||||
|
||||
.img-responsive {
|
||||
max-width: 100%;
|
||||
height: auto
|
||||
}
|
||||
|
||||
.clears {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/*IE下a:hover 背景闪烁*/
|
||||
* html {
|
||||
overflow: -moz-scrollbars-vertical;
|
||||
zoom: expression(function(ele) {ele.style.zoom = "1";document.execCommand("BackgroundImageCache",false,true)}(this))
|
||||
}
|
||||
|
||||
/*HTML5 reset*/
|
||||
header, footer, section, aside, details, menu, article, section, nav, address, hgroup, figure, figcaption, legend {
|
||||
display: block;
|
||||
margin: 0;
|
||||
padding: 0
|
||||
}
|
||||
|
||||
time {
|
||||
display: inline
|
||||
}
|
||||
|
||||
audio, canvas, video {
|
||||
display: inline-block;
|
||||
*display: inline;
|
||||
*zoom: 1
|
||||
}
|
||||
|
||||
audio:not([controls]) {
|
||||
display: none
|
||||
}
|
||||
|
||||
legend {
|
||||
width: 100%;
|
||||
margin-bottom: 20px;
|
||||
font-size: 21px;
|
||||
line-height: 40px;
|
||||
border: 0;
|
||||
border-bottom: 1px solid #e5e5e5
|
||||
}
|
||||
|
||||
legend small {
|
||||
font-size: 15px;
|
||||
color: #999
|
||||
}
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden
|
||||
}
|
||||
|
||||
fieldset {
|
||||
margin: 0 2px;
|
||||
border: 1px solid #c0c0c0;
|
||||
padding: 0.35em 0.625em 0.75em;
|
||||
}
|
||||
|
||||
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto
|
||||
}
|
||||
|
||||
input[type="search"] {
|
||||
-webkit-appearance: textfield;
|
||||
/* 1 */
|
||||
-moz-box-sizing: content-box;
|
||||
-webkit-box-sizing: content-box;
|
||||
/* 2 */
|
||||
box-sizing: content-box
|
||||
}
|
||||
|
||||
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none
|
||||
}
|
||||
|
||||
/*
|
||||
Name:style_clearfix
|
||||
Example:class="clearfix|cl"
|
||||
Explain:Clearfix(简写cl)避免因子元素浮动而导致的父元素高度缺失能问题
|
||||
*/
|
||||
.cl:after, .clearfix:after {
|
||||
content: ".";
|
||||
display: block;
|
||||
height: 0;
|
||||
clear: both;
|
||||
visibility: hidden
|
||||
}
|
||||
|
||||
.cl, .clearfix {
|
||||
zoom: 1
|
||||
}
|
||||
|
||||
.fl {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.fr {
|
||||
float: right;
|
||||
}
|
||||
|
||||
/*a {
|
||||
transition: all 0.6s ease;
|
||||
-webkit-transition: all 0.6s ease;
|
||||
-moz-transition: all 0.6s ease;
|
||||
-ms-transition: all 0.6s ease;
|
||||
}*/
|
||||
|
||||
45
public/static/theme/err/404/style.css
Normal file
@@ -0,0 +1,45 @@
|
||||
@charset "utf-8";
|
||||
|
||||
html {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
body {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.system {
|
||||
text-align: center;
|
||||
margin: -20% auto 0;
|
||||
}
|
||||
|
||||
.system img {
|
||||
text-align: center;
|
||||
width: 500px;
|
||||
}
|
||||
|
||||
.title {
|
||||
|
||||
}
|
||||
|
||||
.title h2 {
|
||||
color: #fff;
|
||||
font-size: 36px;
|
||||
letter-spacing: 4px;
|
||||
text-align: center;
|
||||
line-height: 120px;
|
||||
}
|
||||
|
||||
.title h4 {
|
||||
color: #fff;
|
||||
font-size: 18px;
|
||||
line-height: 38px;
|
||||
text-align: center;
|
||||
}
|
||||
19
public/static/theme/err/500.html
Normal file
@@ -0,0 +1,19 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<title>系统发生错误</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
|
||||
<link rel="stylesheet" href="__ROOT__/static/theme/err/404/reset.css">
|
||||
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=IBM+Plex+Mono:400|Oswald:600'>
|
||||
<link rel="stylesheet" href="__ROOT__/static/theme/err/500/style.css">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=0.6">
|
||||
</head>
|
||||
<body style="padding-bottom:10%">
|
||||
<div id="error"><?php echo htmlentities($message??'Error'); ?></div>
|
||||
<div class="error-num">500
|
||||
<div class="error-num__clip">500</div>
|
||||
</div>
|
||||
<p id="desc">咦,系统似乎出问题了。</p>
|
||||
<p><a style="color:#00F7DE;font-size:28px" href="{:url('@index')}">回到首页</a></p>
|
||||
</body>
|
||||
</html>
|
||||
144
public/static/theme/err/500/style.css
Normal file
@@ -0,0 +1,144 @@
|
||||
:root {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
line-height: 1.5;
|
||||
color: rgba(255, 255, 255, 0.25);
|
||||
}
|
||||
|
||||
html {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
background: #2e3b64;
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: white;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
#error {
|
||||
margin-bottom: 1rem;
|
||||
font-size: 2rem;
|
||||
font-weight: 500;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.075em;
|
||||
color: #C94D4D;
|
||||
-webkit-animation: pulse 4s infinite alternate;
|
||||
animation: pulse 4s infinite alternate;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
@-webkit-keyframes pulse {
|
||||
from {
|
||||
opacity: 0.5;
|
||||
}
|
||||
50% {
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
from {
|
||||
opacity: 0.5;
|
||||
}
|
||||
50% {
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
||||
|
||||
#error::before {
|
||||
content: "";
|
||||
width: 0.75rem;
|
||||
height: 50vh;
|
||||
margin-bottom: 0.75em;
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
bottom: 100%;
|
||||
transform: translateX(-50%);
|
||||
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 60%, transparent 100%);
|
||||
}
|
||||
|
||||
#desc {
|
||||
color: #64acd2;
|
||||
margin: 2em 0 1em;
|
||||
}
|
||||
|
||||
.error-num, .error-num__clip, .error-num__clip-left, .error-num__clip-left::before, .error-num__clip::before {
|
||||
position: relative;
|
||||
font-size: 10rem;
|
||||
font-family: "Oswald";
|
||||
letter-spacing: -0.01em;
|
||||
color: white;
|
||||
-webkit-animation: colorSplit 1.25s steps(2, end) infinite;
|
||||
animation: colorSplit 1.25s steps(2, end) infinite;
|
||||
}
|
||||
|
||||
@-webkit-keyframes colorSplit {
|
||||
25% {
|
||||
text-shadow: -0.02em 0 0 #ED008C, 0.025em 0 0 #0087EF;
|
||||
}
|
||||
75% {
|
||||
text-shadow: -0.035em 0 0 #ED008C, 0.04em 0 0 #0087EF;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes colorSplit {
|
||||
25% {
|
||||
text-shadow: -0.02em 0 0 #ED008C, 0.025em 0 0 #0087EF;
|
||||
}
|
||||
75% {
|
||||
text-shadow: -0.035em 0 0 #ED008C, 0.04em 0 0 #0087EF;
|
||||
}
|
||||
}
|
||||
|
||||
.error-num__clip, .error-num__clip-left, .error-num__clip-left::before, .error-num__clip::before {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -2px;
|
||||
z-index: 10;
|
||||
color: #333;
|
||||
overflow: visible;
|
||||
-webkit-clip-path: polygon(0% 0%, 100% 0, 100% 25%, 0 25%, 0 30%, 100% 30%, 100% 50%, 0 50%, 0 60%, 100% 60%, 100% 65%, 0 65%, 0 80%, 100% 80%, 100% 85%, 0 85%, 0% 0%);
|
||||
clip-path: polygon(0% 0%, 100% 0, 100% 25%, 0 25%, 0 30%, 100% 30%, 100% 50%, 0 50%, 0 60%, 100% 60%, 100% 65%, 0 65%, 0 80%, 100% 80%, 100% 85%, 0 85%, 0% 0%);
|
||||
-webkit-animation: glitch 1s steps(2, start) infinite;
|
||||
animation: glitch 1s steps(2, start) infinite;
|
||||
}
|
||||
|
||||
@-webkit-keyframes glitch {
|
||||
30% {
|
||||
left: 0;
|
||||
}
|
||||
to {
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes glitch {
|
||||
30% {
|
||||
left: 0;
|
||||
}
|
||||
to {
|
||||
left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.error-num__clip::before, .error-num__clip-left::before {
|
||||
content: "500";
|
||||
left: 0.05em;
|
||||
color: white;
|
||||
z-index: 9;
|
||||
-webkit-clip-path: polygon(0% 0%, 100% 0, 100% 26%, 0 26%, 0 29%, 100% 29%, 100% 51%, 0 51%, 0 59%, 100% 59%, 100% 66%, 0 66%, 0 79%, 100% 79%, 100% 86%, 0 86%, 0% 0%);
|
||||
clip-path: polygon(0% 0%, 100% 0, 100% 26%, 0 26%, 0 29%, 100% 29%, 100% 51%, 0 51%, 0 59%, 100% 59%, 100% 66%, 0 66%, 0 79%, 100% 79%, 100% 86%, 0 86%, 0% 0%);
|
||||
}
|
||||
BIN
public/static/theme/img/404_icon.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
public/static/theme/img/505_icon.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
public/static/theme/img/headimg.png
Normal file
|
After Width: | Height: | Size: 8.9 KiB |
BIN
public/static/theme/img/image.png
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
BIN
public/static/theme/img/login/bg1.jpg
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
public/static/theme/img/login/bg2.jpg
Normal file
|
After Width: | Height: | Size: 66 KiB |
BIN
public/static/theme/img/upimg.png
Normal file
|
After Width: | Height: | Size: 4.4 KiB |
BIN
public/static/theme/img/upvideo.png
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
BIN
public/static/theme/img/wechat/index.png
Normal file
|
After Width: | Height: | Size: 231 B |
BIN
public/static/theme/img/wechat/m-icon-error.png
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
public/static/theme/img/wechat/m-icon-success.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
public/static/theme/img/wechat/mobile_foot.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
public/static/theme/img/wechat/mobile_head.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
public/static/theme/img/wechat/qrc_pay_error.jpg
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
public/static/theme/img/wechat/qrc_payed.jpg
Normal file
|
After Width: | Height: | Size: 27 KiB |