This commit is contained in:
Xes
2025-08-14 22:39:38 +02:00
parent 3641e93527
commit 5403f346e3
3370 changed files with 327179 additions and 0 deletions

View File

@@ -0,0 +1,162 @@
.styleOfPages{
display:none;
}
.dialogBlockEditdialogcard{
border:solid 1px rgb(71, 79, 90);
position:relative;
padding:10px;
height:260px;
}
.dialogBlockEditmemory{
border:solid 1px rgb(71, 79, 90);
position:relative;
padding:10px;
height:160px;
}
.labelBlockEdit{
width:60px;
float:left;
text-align: right;
}
.inputBlockEdit{
width:90px;
float:left;
text-align: right;
}
.arealeft{
float:left;
width:80%;
}
.lineBlockTxt{
float:left;
width:70%;
height:120px;
background-color: white;
border:solid 1px rgb(71, 79, 90);
overflow: hidden;
}
.imageBlockPreview{
border:solid 1px rgb(71, 79, 90);
position:absolute;
right:10px;top:10px;
border-radius: 5px;
background-image:url("../img/dialogcard.jpg");
background-size: contain;
background-repeat: no-repeat;
width: 100px;
height:100px;
cursor:pointer;
}
.imageBlockPreviewLarge{
border:solid 1px rgb(71, 79, 90);
border-radius: 5px;
background-image:url("../img/dialogcard.jpg");
background-size: contain;
background-position: center center;
background-repeat: no-repeat;
width: 200px;
height:100px;
cursor:pointer;
}
.toolimage{
width:100%;
max-width:80px;
max-height:80px;
}
@media screen and (min-width: 640px) {
.toolimage{
width:80px;
height:80px;
}
}
.addBlockCard{
position : relative;
display : inline-block;
background-image : url("../img/add.png");
background-repeat : no-repeat;
background-position : center center;
width : 50px;
height : 50px;
cursor : pointer;
}
.addBlockCard:hover{
border : solid 2px rgb(44, 102, 10);
border-radius : 50%;
}
.divAddBlockDialog{
position : relative;
text-align : center;
width : 100%;
height : 50px;
}
.deleteBlockCard{
position : absolute;
display : none;
right : 2px;
bottom : 2px;
border-radius : 5px;
background-image : url("../img/delete.png");
background-repeat : no-repeat;
background-position : center center;
width : 50px;
height : 50px;
cursor : pointer;
}
.deleteBlockCard:hover{
border : solid 2px rgb(224, 73, 35);
border-radius : 50%;
}
/* header cell in data table in tools */
.data_table {
margin-bottom: 18px;
width: 100%;
border: 1px solid #DDDDDD;
}
.data_table td {
font-size: 12px;
}
.data_table th, .data_table td {
border-top: 1px solid #DDDDDD;
line-height: 18px;
padding: 10px;
}
.data_table th {
padding: 8px 10px;
font-weight: normal;
background-color: #EEEEEE;
border-bottom: 1px solid #DDDDDD;
color: #333;
}
.data_table th a {
color: #333;
}
.data_table_no_border {
border-collapse: collapse;
border-spacing: 0;
font-size: 12px;
margin-bottom: 15px;
margin-top: 8px;
text-align: left;
width: 100%;
}
.data_table_no_border td {
line-height: normal;
padding: 6px;
text-align: left;
vertical-align: middle;
}
.data_table tr.row_odd {
background-color: #F9F9F9;
}

View File

@@ -0,0 +1,68 @@
.document-tilte{
position:relative;
float:right;
margin:5px;
width:250px;
height:325px;
background: #ffffff;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
-webkit-transition: box-shadow 0.2s;
-moz-transition: box-shadow 0.2s;
transition: box-shadow 0.2s;
}
.document-vignette{
border : solid 1px gray;
margin-left : 45px;
margin-top : 14px;
width : 160px;
height : 230px;
}
.ico-none{
background-image : url("../base/css/covers/none.png");
}
.ico-livret{
background-image : url("../base/css/covers/livret.jpg");
}
.ico-pdf{
background-image : url("../base/css/covers/pdf.jpg");
}
.ico-word{
background-image : url("../base/css/covers/word.jpg");
}
.ico-graph{
background-image : url("../base/css/covers/graph.jpg");
}
.document-sub-title{
position:absolute;
text-align:center;
bottom:50px;
left:0px;
right:0px;
height:25px;
line-height:25px;
}
.myButton {
position:absolute;
bottom:10px;
left:30px;
background-color:#44c767;
-moz-border-radius:28px;
-webkit-border-radius:28px;
border-radius:28px;
border:1px solid #18ab29;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:17px;
padding:2px 49px;
text-decoration:none;
text-shadow:0px 1px 0px #2f6627;
}
.myButton:hover {
background-color:#5cbf2a;
}

View File

@@ -0,0 +1,49 @@
#extrasobjectH5p{
position : fixed;
z-index : 10003;
border : solid 3px #2575be;
background-color : white;
top : 50%;
left : 50%;
width : 580px;
height : 520px;
margin-left : -290px;
margin-top : -265px;
}
.bloch5pGrid{
position : relative;
padding : 5px;
margin-bottom : 10px;
width : 560px;
height : 300px;
overflow : auto;
border : dotted 1px gray;
}
.bloch5pLine{
position : relative;
float : left;
width : 260px;
padding : 4px;
border : solid 1px gray;
cursor : pointer;
margin :1px;
border-radius : 2px;
}
.bloch5pLine:hover{
background-color : #BCF5A9;
}
.bloch5pAdd{
position : relative;
float : left;
width : 260px;
padding : 4px;
border : solid 1px gray;
cursor : pointer;
margin : 1px;
border-radius : 2px;
background-image : url("../img/add.png");
background-position : center center;
background-repeat: no-repeat;
}