first commit

This commit is contained in:
liyp
2024-09-09 17:40:33 +08:00
committed by iorebuild
parent f165960913
commit 602872fb07
35 changed files with 5278 additions and 0 deletions

10
ui/css/base.css Normal file
View File

@@ -0,0 +1,10 @@
*{
padding: 0px;
margin: 0px;
}
#app_title{
margin-left: 0.5%;
}
#mainbox{
border: 1px solid black;
}

62
ui/css/file_create.css Normal file
View File

@@ -0,0 +1,62 @@
#file_create{
width: 99%;
border-radius: 8px;
background-color: #EEEEEEEE;
margin-top: 3px;
text-align: initial;
}
#file_create h3
{
text-align: center;
}
#file_create input
{
font-size: 18px;
margin-left: 10px;
}
#file_create select
{
font-size: 18px;
margin-left: 10px;
}
#file_create hr
{
width: 98%;
margin: 0 auto;
margin-top: 3px;
margin-bottom: 3px;
}
.conf_title
{
font-size: 18px;
display: inline;
width: 30%;
margin-left: 6px;
}
#board_h_click
{
text-align: center;
vertical-align: top;
margin-bottom: 5px;
font-size: 18px;
width: 55%;
}
#board_h
{
font-family: "SimHei", Arial, sans-serif; /* 黑体 */
text-align: left;
vertical-align: top;
width: 99%;
height: 1000px;
font-size: 16px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #333; /* 文本颜色 */
background-color: #fff; /* 背景色 */
}
#do_box , #di_box
{
float: right;
margin-right: 10px;
margin-bottom: 10px;
}

20
ui/css/jldjs.css Normal file
View File

@@ -0,0 +1,20 @@
#jld_calc
{
width: 99%;
border-radius: 8px;
background-color: #EEEEEEEE;
}
#jld_calc tr{
line-height: 35px;
}
#jld_calc td{
text-align: center;
width: 33%;
}
#jld_calc td input{
border-radius: 3px;
background-color: #EEEEEEEE;
width: 100%;
height: 30px;
border: 0.5px solid black;
}