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
|
body {
font-family: arial;
}
.table {
float: left;
text-align: center;
margin-right: 5px;
}
.table span {
font-size: .75em;
}
.seats {
border: solid 3px #666;
width: 75px;
height: 100px;
background-color: #666;
margin: 5px;
padding: 2px;
border-radius: 5px;
box-shadow: 2px 2px 2px #999;
}
.ko_container {
border: solid 3px green;
}
.student {
background-color: #444;
color: #fff;
border-radius: 3px;
margin: 2px;
padding: 1px;
text-align: center;
width: 70px;
cursor: move;
}
.new {
border: solid 1px #444;
background-color: #ccc;
height: 25px;
width: 500px;
padding: 2px;
border-radius: 5px;
}
.new div {
float: left;
}
.note {
font-style: italic;
font-size: .75em;
color: #888;
margin-bottom: 10px;
}
.count {
color: #666;
}
.ready {
color: green;
}
#extra {
clear: both;
padding-top: 20px;
}
#master {
margin-top: 40px;
}
#master table {
font-size: .75em;
border: solid 1px black;
text-align: center;
}
#master th {
color: #666;
}
#message, #error {
font-size: .75em;
margin-top: 10px;
background-color: orange;
color: #444;
padding: 2px;
width: 500px;
text-align: center;
border-radius: 5px;
box-shadow: 2px 2px 2px #999;
position: absolute;
}
#error {
background-color: #ff3333;
color: #ddd;
}
|