You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
1.4 KiB
82 lines
1.4 KiB
<template>
|
|
<div id="app">
|
|
<!-- <nav>
|
|
<router-link to="/">Home</router-link> |
|
|
<router-link to="/about">About</router-link>
|
|
</nav> -->
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
|
|
//移除添加按钮的颜色
|
|
.addorbottom {
|
|
border: none;
|
|
background-color: rgb(203, 249, 209);
|
|
color: rgb(113, 113, 113);
|
|
}
|
|
|
|
//布局按钮区域
|
|
.buttonarea {
|
|
margin-left: 10px;
|
|
margin-top: 7%;
|
|
}
|
|
.el-dialog {
|
|
// background-color: white !important;
|
|
// z-index: 999;
|
|
// opacity: 0.5;
|
|
// z-index: 99;
|
|
// background-color: transparent !important;
|
|
}
|
|
.el-dialog__wrapper {
|
|
// background: rgb(235, 235, 235);
|
|
// opacity: 0.3;
|
|
}
|
|
.addbottom {
|
|
color: rgb(65, 137, 104);
|
|
}
|
|
.editnottom {
|
|
color: rgb(65, 137, 104);
|
|
}
|
|
.determinebottom {
|
|
color: rgb(65, 137, 104);
|
|
}
|
|
.deletebottom {
|
|
color: rgb(65, 137, 104);
|
|
}
|
|
.cancellationbottom {
|
|
color: rgb(65, 137, 104);
|
|
}
|
|
|
|
.bulletcommit {
|
|
background: rgb(203, 236, 226) !important;
|
|
color: rgb(65, 137, 104) !important;
|
|
border: 1px solid rgb(65, 137, 104) !important;
|
|
border: 2px solid rgb(65, 137, 104);
|
|
}
|
|
.el-dialog__title {
|
|
color: rgb(31, 148, 96) !important;
|
|
font-weight: 500;
|
|
}
|
|
.bullettitle {
|
|
color: rgb(31, 148, 96);
|
|
}
|
|
|
|
.commonbutton {
|
|
width: 100px;
|
|
// color: #349d2f !important;
|
|
color: rgb(65, 137, 104) !important;
|
|
// color: #fff;
|
|
font-weight: 700 !important;
|
|
height: 35px;
|
|
}
|
|
.publiccss {
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
}
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
</style>
|