Rename to VAR.Focus

This commit is contained in:
2015-06-26 02:23:21 +02:00
parent 58d51ee3b7
commit 175fad80e4
52 changed files with 71 additions and 98 deletions

View File

@@ -0,0 +1,160 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 12px;
background-color: grey;
color: black;
}
p {
margin-bottom: 0.5em;
text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}
h1 {
font-size: 1.7em;
text-align: center;
margin-top: 1.0em;
margin-bottom: 0.5em;
text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}
h2 {
font-size: 1.5em;
text-align: center;
margin-top: 1.0em;
margin-bottom: 0.5em;
text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}
h3 {
font-size: 1.2em;
text-align: left;
margin-top: 1.0em;
margin-bottom: 0.5em;
text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}
.divHeader {
display: block;
background-color: black;
}
.divHeader a {
text-decoration: none;
}
.divHeader h1 {
font-size: 30px;
color: yellow;
margin: 0;
text-shadow: none;
}
.divUserInfo{
position: absolute;
top: 0;
right: 0;
}
.divContent {
padding-left: 10px;
padding-right: 10px;
}
.divCode {
background-color: black;
color: green;
font-family: Courier New, Courier, monospace;
text-shadow: none;
overflow: auto;
margin: 5px;
padding: 2px;
box-shadow: 0 0 10px rgb(0,0,0);
}
.formColumn {
display: inline-block;
font-size: 0;
}
.formRow{
display: block;
font-size: 0;
margin: 10px;
}
.formLabel{
display: inline-block;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 12px;
text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}
.formLabel span:last-child::after{
content: ':';
}
.formField{
display: inline-block;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 12px;
}
.textbox {
background: white;
border: solid 1px rgb(64,64,64);
border-radius: 5px;
line-height: 13px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 11px;
padding: 3px;
box-shadow: inset 0px -2px 5px rgba(255,255,255,1), inset 0px 2px 5px rgba(128,128,128,1);
}
.textbox:focus{
border: solid 1px black;
box-shadow: 0px 0px 10px rgba(255,255,255,0.5), inset 0px -2px 5px rgba(255,255,255,1), inset 0px 2px 5px rgba(0,0,0,0.5);
}
.textboxInvalid{
box-shadow: 0px 0px 10px rgba(255,0,0,0.5), inset 0px -2px 5px rgba(255,255,255,1), inset 0px 2px 5px rgba(0,0,0,0.5);
border: solid 1px rgb(255,0,0);
}
.textboxInvalid:focus{
box-shadow: 0px 0px 10px rgba(255,0,0,0.5), inset 0px -2px 5px rgba(255,255,255,1), inset 0px 2px 5px rgba(0,0,0,0.5);
border: solid 1px black;
}
.button{
padding: 5px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.5), inset 0px 2px 5px rgba(255,255,255,1), inset 0px -2px 5px rgba(128,128,128,1);
vertical-align: top;
border-radius: 5px;
border: solid 1px black;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 11px;
text-shadow: 0 1px 1px rgba(255,255,255,0.5);
text-align: center;
cursor: pointer;
background-color: rgb(192,192,192);
margin-left: 5px;
}
.button:first-child{
margin-left: 0;
}
.button:hover{
background-color: rgb(220,220,220);
}
.button:active{
background-color: rgb(220,220,220);
box-shadow: inset 0px 2px 5px rgba(255,255,255,1), inset 0px -2px 5px rgba(128,128,128,1);
}
.width25pc{ width: 25%; }
.width50pc{ width: 50%; }
.width75pc{ width: 75%; }
.width100pc{ width: 100%; }
.width70px {width: 70px; max-width: 100%; }
.width100px {width: 100px; max-width: 100%; }
.width150px {width: 150px; max-width: 100%; }
.width200px {width: 200px; max-width: 100%; }
.width300px {width: 300px; max-width: 100%; }

View File

@@ -0,0 +1,138 @@
.divBoard{
position:relative;
height:100%;
}
.divToolbox{
position: absolute;
background-color: rgb(127,127,255);
box-shadow: 0 0 10px 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;
}
.divToolbox .btnToolbox{
margin-top: 5px;
margin-right: 5px;
padding: 2px;
border:solid 1px rgb(0,0,128);
border-radius: 3px;
color: rgb(0,0,128);
background-color: transparent;
font-family: "Segoe UI",Tahoma,Geneva,Verdana,sans-serif;
font-size: 12px;
}
.divToolbox .btnToolbox:hover{
color: rgb(127,127,255);
background-color: rgb(0,0,128);
}
.divCard{
position: absolute;
background-color: rgb(255,255,0);
box-shadow: 0 0 10px rgba(0,0,0,0.5);
min-width: 150px;
max-width: 250px;
min-height: 150px;
max-height: 250px;
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;
}
.divCard .divBody{
font-family: "Segoe UI",Tahoma,Geneva,Verdana,sans-serif;
font-size: 12px;
}
.divCard .divOverlay{
opacity: 0;
background-color: rgb(255,255,0);
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.divCard .btnCard{
margin-top: 5px;
margin-right: 5px;
padding: 2px;
border:solid 1px black;
border-radius: 3px;
color: black;
background-color: transparent;
font-family: "Segoe UI",Tahoma,Geneva,Verdana,sans-serif;
font-size: 12px;
}
.divCard .btnCard:hover{
color: yellow;
background-color: black;
}
.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:solid 1px black;
padding: 2px;
}
.divCard .txtBody {
min-height: 150px;
width:100%;
font-family: "Segoe UI",Tahoma,Geneva,Verdana,sans-serif;
font-size: 12px;
background-color: transparent;
border:solid 1px black;
padding: 2px;
}

View File

@@ -0,0 +1,152 @@
.divChatWindow {
box-sizing: border-box;
overflow: hidden;
border: solid 1px black;
padding: 5px;
border-radius: 5px;
background-color: rgb(220,220,220);
box-shadow: 0px 0px 5px black;
position: fixed;
bottom: 0;
right: 0;
}
.divChatTitleBar{
text-align: right;
}
.titleChatNormal{
background-color: rgb(220,220,220);
cursor: pointer;
display: inline-block;
border-radius: 5px;
padding: 5px;
}
@keyframes alert {
0% {background-color: red;}
50% {background-color: rgb(220,220,220);}
100% {background-color: red;}
}
.titleChatAlert{
background-color: red;
animation-name: alert;
animation-duration: 1s;
animation-iteration-count: infinite;
cursor: pointer;
display: inline-block;
border-radius: 5px;
padding: 5px;
}
.titleChatDisconnected{
color: rgb(64,64,64);
background-color: rgb(220,220,220);
cursor: pointer;
display: inline-block;
border-radius: 5px;
padding: 5px;
}
.divChat {
box-sizing: border-box;
overflow: auto;
height: calc(100% - 37px);
margin-bottom: 5px;
border-radius: 5px;
border: solid 1px black;
box-shadow: inset 0px 0px 5px black;
}
.messageRow,
.selfMessageRow {
vertical-align: top;
display: block;
}
.messageRow {
text-align: left;
}
.selfMessageRow {
text-align: right;
}
.message {
box-sizing: border-box;
display: inline-block;
vertical-align: top;
border: solid 1px rgb(32, 32, 32);
background-color: rgb(220,220,220);
border-radius: 5px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.5), inset 0px 2px 5px rgba(255,255,255,0.5), inset 0px -2px 5px rgba(128,128,128,0.5);
margin: 2px;
padding: 5px;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.messageRow .message {
background-color: rgb(220,200,200);
}
.selfMessageRow .message {
background-color: rgb(200,220,200);
}
.message .user {
box-sizing: border-box;
color: rgb(64,64,64);
text-shadow: 0 0 1px rgba(0,0,0,0.3);
font-size: 10px;
font-weight: bold;
}
.message .text {
box-sizing: border-box;
color: rgb(32,32,32);
text-shadow: 0 0 1px rgba(0,0,0,0.3);
font-size: 12px;
}
.divChatControls {
}
.chatTextBox {
box-sizing: border-box;
padding: 5px;
box-shadow: inset 0px 0px 5px black;
width: calc(100% - 52px);
border-radius: 5px;
border: solid 1px black;
margin: 0 2px 0 0;
vertical-align: top;
height: 30px;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 12px;
text-align: left;
}
.chatButton {
box-sizing: border-box;
padding: 5px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.5), inset 0px 2px 5px rgba(255,255,255,1), inset 0px -2px 5px rgba(128,128,128,1);
width: 50px;
vertical-align: top;
border-radius: 5px;
border: solid 1px black;
height: 30px;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
font-size: 12px;
text-align: center;
cursor: pointer;
background-color: rgb(192,192,192);
}
.chatButton:hover {
background-color: rgb(220,220,220);
}
.chatButton:active {
background-color: rgb(220,220,220);
box-shadow: inset 0px 2px 5px rgba(255,255,255,1), inset 0px -2px 5px rgba(128,128,128,1);
}