57 lines
987 B
CSS
57 lines
987 B
CSS
html {
|
|
--backupground-color: #f7f7f7;
|
|
--btn-color-blue: #307dbe;
|
|
--btn-color-yellow: #f7b24d;
|
|
--btn-color-green: #5bad60;
|
|
--btn-color-red: #e56651;
|
|
--btn-font-color: #fff;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: yunfengfeiyunti;
|
|
src: url(../fonts/YunFengfeiyunti.TTF);
|
|
}
|
|
|
|
@font-face {
|
|
font-family: jinghongtifan;
|
|
src: url(../fonts/FZZJ-JHTJF.TTF);
|
|
}
|
|
|
|
body {
|
|
padding: 0px;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.login_box {
|
|
box-shadow: 0px 0px 10px #bbb;
|
|
/* border-radius: 5px; */
|
|
position: fixed;
|
|
height: 100vh;
|
|
width: 400px;
|
|
top: 0vh;
|
|
/* bottom: 0vh; */
|
|
right: 50px;
|
|
background-color: #ffffffaf;
|
|
z-index: 10;
|
|
}
|
|
|
|
.title_box {
|
|
position: absolute;
|
|
font-family: "jinghongtifan";
|
|
font-size: 60px;
|
|
color: #fff;
|
|
top: 5vh;
|
|
left: 10vw;
|
|
height: 2em;
|
|
width: 10em;
|
|
z-index: 10;
|
|
}
|
|
|
|
.dash_box {
|
|
position: relative;
|
|
height: 200vh;
|
|
width: 100vw;
|
|
background-color: #ddd;
|
|
z-index: 0;
|
|
}
|