| 1 | @charset "UTF-8";
|
|---|
| 2 |
|
|---|
| 3 | div.wrap {
|
|---|
| 4 | position: absolute;
|
|---|
| 5 | top: 0px;
|
|---|
| 6 | bottom: 0px;
|
|---|
| 7 | left: 0px;
|
|---|
| 8 | right: 0px;
|
|---|
| 9 | background-color: rgba(0,0,0,0.8);
|
|---|
| 10 | }
|
|---|
| 11 |
|
|---|
| 12 | div.classselect {
|
|---|
| 13 | position: absolute;
|
|---|
| 14 | top: 0px;
|
|---|
| 15 | bottom: 0px;
|
|---|
| 16 | left: 0px;
|
|---|
| 17 | right: 0px;
|
|---|
| 18 | margin: auto;
|
|---|
| 19 | width: 90%;
|
|---|
| 20 | height: 90%;
|
|---|
| 21 | overflow: hidden;
|
|---|
| 22 | background: #fafafa;
|
|---|
| 23 | }
|
|---|
| 24 |
|
|---|
| 25 | div.left {
|
|---|
| 26 | float: left;
|
|---|
| 27 | width: 50%;
|
|---|
| 28 | height: 100%;
|
|---|
| 29 | padding: 5px 0px;
|
|---|
| 30 | }
|
|---|
| 31 |
|
|---|
| 32 | div.right {
|
|---|
| 33 | float: right;
|
|---|
| 34 | width: 50%;
|
|---|
| 35 | height: 100%;
|
|---|
| 36 | padding: 5px 0px;
|
|---|
| 37 | }
|
|---|
| 38 |
|
|---|
| 39 | div.startclass, div.endclass {
|
|---|
| 40 | padding: 5px 0px;
|
|---|
| 41 | }
|
|---|
| 42 |
|
|---|
| 43 | #searchstarttext, #searchendtext {
|
|---|
| 44 | width: 100%;
|
|---|
| 45 | }
|
|---|
| 46 |
|
|---|
| 47 | span.startclassuri:hover {
|
|---|
| 48 | cursor: pointer;
|
|---|
| 49 |
|
|---|
| 50 | -moz-border-radius: 10px;
|
|---|
| 51 | -webkit-border-radius: 10px;
|
|---|
| 52 | border-radius: 10px;
|
|---|
| 53 | padding: 3px;
|
|---|
| 54 |
|
|---|
| 55 | background-color: hsl(40, 50%, 75%);
|
|---|
| 56 | }
|
|---|
| 57 |
|
|---|
| 58 | span.endclassuri:hover {
|
|---|
| 59 | cursor: pointer;
|
|---|
| 60 |
|
|---|
| 61 | -moz-border-radius: 10px;
|
|---|
| 62 | -webkit-border-radius: 10px;
|
|---|
| 63 | border-radius: 10px;
|
|---|
| 64 | padding: 3px;
|
|---|
| 65 |
|
|---|
| 66 | background-color: hsl(150, 50%, 75%);
|
|---|
| 67 | }
|
|---|
| 68 |
|
|---|
| 69 | span.selectedstart {
|
|---|
| 70 | cursor: pointer;
|
|---|
| 71 |
|
|---|
| 72 | -moz-border-radius: 10px;
|
|---|
| 73 | -webkit-border-radius: 10px;
|
|---|
| 74 | border-radius: 10px;
|
|---|
| 75 | padding: 2px;
|
|---|
| 76 | border: 2px hsl(40, 50%, 50%) solid;
|
|---|
| 77 |
|
|---|
| 78 | background-color: hsl(40, 50%, 75%);
|
|---|
| 79 | }
|
|---|
| 80 |
|
|---|
| 81 | span.selectedend {
|
|---|
| 82 | cursor: pointer;
|
|---|
| 83 |
|
|---|
| 84 | -moz-border-radius: 10px;
|
|---|
| 85 | -webkit-border-radius: 10px;
|
|---|
| 86 | border-radius: 10px;
|
|---|
| 87 | padding: 2px;
|
|---|
| 88 |
|
|---|
| 89 | border: 2px hsl(150, 50%, 50%) solid;
|
|---|
| 90 |
|
|---|
| 91 | background-color: hsl(150, 50%, 75%);
|
|---|
| 92 | }
|
|---|
| 93 |
|
|---|
| 94 | table {
|
|---|
| 95 | width: 100%;
|
|---|
| 96 | }
|
|---|
| 97 |
|
|---|
| 98 | tr.nohit {
|
|---|
| 99 | display: none;
|
|---|
| 100 | }
|
|---|
| 101 |
|
|---|
| 102 | tr.endpointrow th {
|
|---|
| 103 | text-align: center;
|
|---|
| 104 | -moz-border-radius: 5px;
|
|---|
| 105 | -webkit-border-radius: 5px;
|
|---|
| 106 | border-radius: 5px;
|
|---|
| 107 | padding: 3px;
|
|---|
| 108 |
|
|---|
| 109 | background-color: hsl(200, 50%, 75%);
|
|---|
| 110 | } |
|---|