Files
        @ bc5accd3cbd4
    
        
              Branch filter: 
        
    Location: SlatePermutate/styles/general.css
        
            
            bc5accd3cbd4
            2.1 KiB
            text/css
        
        
    
    Added styling for output: color-coding and rounded edges
    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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154  | body {
  background: #fff;
}
/* Page Layout Styling */
#page {
  font: normal 14px sans-serif;
  background: transparent;
  width: 80%;
  margin:auto;
  min-width: 900px;
  max-width: 1100px;
}
#content {
  background: #fff;
  padding: 12px;
}
#header {
  border-bottom: 1px dashed #888;
  text-align: left;
}
#header h2 {
  font:  italic 20px sans-serif;
}
#footer {
  border-top: 1px dashed #888;
  text-align: right;
}
#savedBox {
  width: 20em;
  padding: 1em;
  border: 1px solid #CCC;
  float:right;
  background: #EEE;
  font-size: .8em;
}
/* Link Styling */
a:link, a:visited, a:active {
  color: #777;
}
a:hover {
  color: #AAA;
}
#footer a:link, #footer a:visited, #footer a:active, #footer a:hover {
  color: #000;
  text-decoration: none;
}
#footer a:hover {
  text-decoration: underline;
}
/* Table Styling */
td.center {
  text-align:center;
}
.section:nth-child(even) {
  background: #DDDDDD;
}
.section:nth-child(odd) {
  background: #DDDDDD;
}
.none {
  background: #fff;
}
.class {
  /* background: #99FF99; */
  background: #70a97c;
}
/* Input Formatting */
#container {
  margin-left: 2em;
}
.defaultText { 
  width: 300px;
}
.defaultTextActive { 
  color: #a1a1a1; 
  font-style: italic; 
}
.error {
  color: #F00; /* For validation errors */
} 
.error p {
  padding: 0;
  margin: 0;
  font-size: .7em;
}
#classage {
  float:left;
}
.paddingtop {
  padding: .5em;
  padding-top: 1.5em;
}
.tdInput {
  background: #fff;
}
.addClassRow {
  padding: 2px;
  width: 30em;
}
.gray {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 1px solid #999;
  text-align: center!important;
  background: #CCC!important;
  cursor:default;
}
.gray:hover {
  background: #DDD!important;
}
.green {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 1px solid #999;
  text-align: center!important;
  background: #92a689!important;
  cursor:default;
}
.green:hover {
  background: #68a64a!important;
}
/* General Classes */
.clear {
  clear: all;
}
.noborder {
  border: none!important;
}
.righttext {
  text-align: right;
}
.centeredtext {
  text-align: center;
}
 |