Files
VAR.WebFormsCore/VAR.Focus.Web/Styles/05. Cards.css
2018-03-18 05:13:18 +01:00

166 lines
4.2 KiB
CSS

.divBoard {
position: relative;
height: 100%;
background-image: url(../Images/BGCork.png);
box-shadow: 0 0 10px black inset;
overflow: auto;
}
.divToolbox {
position: absolute;
background-color: rgb(127,127,255);
box-shadow: 0 5px 15px rgba(0,0,0,0.5);
min-width: 150px;
min-height: 50px;
padding: 5px;
border-radius: 2px;
}
.divToolbox .divTitle {
font-family: "Segoe UI",Tahoma,Geneva,Verdana,sans-serif;
font-size: 12px;
font-weight: bold;
text-align: center;
display: block;
height: 20px;
line-height: 20px;
background-color: rgb(0,0,128);
color: rgb(128,128,255);
border-radius: 3px;
margin-bottom: 5px;
}
.divToolbox .divOverlay {
opacity: 0;
background-color: rgb(127,127,255);
position: absolute;
top: 0;
left: 0;
right: 0;
height: 30px;
-ms-touch-action: none;
touch-action: none;
}
.divToolbox .btnToolbox {
margin-top: 5px;
margin-right: 5px;
padding: 2px;
border: none;
border-radius: 3px;
box-shadow: 0 -2px 4px rgba(0,0,0,0.4) inset, 0 2px 3px rgba(255,255,255,1) inset;
color: rgb(0,0,128);
background-color: transparent;
font-family: "Segoe UI",Tahoma,Geneva,Verdana,sans-serif;
font-size: 12px;
cursor: pointer;
}
.divToolbox .btnToolbox:hover {
color: rgb(127,127,255);
background-color: rgb(0,0,128);
}
.divToolbox .btnToolbox:active {
box-shadow: 0 2px 4px rgba(0,0,0,0.4) inset, 0 -2px 3px rgba(255,255,255,1) inset;
}
.divCard {
position: absolute;
background-color: rgb(255,255,127);
box-shadow: 0 3px 10px rgba(0,0,0,0.5);
width: 200px;
height: 150px;
padding: 5px;
border-radius: 2px;
overflow: auto;
}
.divCard .divTitle {
padding-bottom: 5px;
padding-right: 44px;
font-family: "Segoe UI",Tahoma,Geneva,Verdana,sans-serif;
font-size: 12px;
font-weight: bold;
text-align: center;
height: 17px;
box-sizing: content-box;
}
.divCard .divBody {
font-family: "Segoe UI",Tahoma,Geneva,Verdana,sans-serif;
font-size: 12px;
height: calc(100% - 17px);
}
.divCard .divOverlay {
opacity: 0;
background-color: rgb(255,255,0);
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
-ms-touch-action: none;
touch-action: none;
}
.divCard .btnCard {
margin-top: 5px;
margin-right: 5px;
padding: 2px;
border: none;
border-radius: 3px;
box-shadow: 0 -2px 4px rgba(0,0,0,0.4) inset, 0 2px 3px rgba(255,255,255,1) inset;
color: black;
background-color: transparent;
font-family: "Segoe UI",Tahoma,Geneva,Verdana,sans-serif;
font-size: 12px;
cursor: pointer;
}
.divCard .btnCard:hover {
color: yellow;
background-color: black;
}
.divCard .btnCard:active {
box-shadow: 0 2px 4px rgba(0,0,0,0.4) inset, 0 -2px 3px rgba(255,255,255,1) inset;
}
.divCard .btnEdit {
margin: 0;
top: 4px;
position: absolute;
width: 16px;
right: 24px;
}
.divCard .btnDelete {
margin: 0;
top: 4px;
position: absolute;
width: 16px;
right: 4px;
}
.divCard .txtTitle {
width: 100%;
font-family: "Segoe UI",Tahoma,Geneva,Verdana,sans-serif;
font-size: 12px;
background-color: transparent;
border: none;
font-weight: bold;
text-align: center;
}
.divCard .txtBody {
height: 100%;
width: 100%;
font-family: "Segoe UI",Tahoma,Geneva,Verdana,sans-serif;
font-size: 12px;
background-color: transparent;
border: none;
resize: none;
}