File size: 1,602 Bytes
1e40c2a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
.customControlsDiv
{
position: absolute;
top: 0px;
right: 0px;
}
.controlsArea
{
padding: 5px;
width: 580;
position: relative;
}
.controlsUnit
{
margin: 10px 5px;
font-size: 16px;
font-family: VT323;
color: #008000;
background-color: #000d00;
border: 1px solid #008000;
border-radius: 5px;
padding: 5px 10px;
width: 200px;
}
.controlsUnit:hover
{
cursor: pointer;
background-color: #008000;
color: #000d00;
}
.controlsUnitPending
{
cursor: pointer;
background-color: #008000;
color: #000d00;
font-weight: bold;
}
.enableCustomDiv
{
margin: 10px 5px;
font-size: 16px;
font-family: VT323;
color: #008000;
background-color: #000d00;
border: 1px solid #008000;
border-radius: 5px;
padding: 5px 10px;
width: 300px;
height: 245px;
position: absolute;
top: 0px;
left: 0px;
}
.controlsValue
{
float: right;
}
.noDisplay
{
display: none;
}
.withDisplay
{
display: inline;
}
.autoRepeatDiv
{
position: absolute;
bottom: 10px;
left: 10px;
}
.thresholdDiv
{
position: absolute;
bottom: 10px;
right: 10px;
width: 150px;
}
.autoRepeatArea
{
margin: 10px 5px;
font-size: 16px;
font-family: VT323;
color: #008000;
background-color: #000d00;
border: 1px solid #008000;
border-radius: 5px;
padding: 5px 10px;
width: 560px;
height: 50px;
position: absolute;
top: 265px;
left: 0px;
}
.autoRepeatForm
{
width: 350px;
position: absolute;
right: 0px;
bottom: 0px;
} |