File:  [LON-CAPA] / loncom / homework / task.css
Revision 1.5: download - view: text, annotated - select for diffs
Mon Nov 13 20:30:16 2006 UTC (17 years, 6 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- adding style to overall status

    1: /* CSS Document */
    2: div.LC_GRADING_task {
    3: 	padding-bottom: 6em;
    4: 	font-family:Verdana, Arial, Helvetica, sans-serif;
    5: 	font-size: small;
    6: }
    7: 
    8: /*
    9: font table {
   10: 	display: none; 
   11: }
   12: */
   13: 
   14: ul.LC_GRADING_handininfo {
   15: 	border: 1px solid black;
   16: 	position: fixed;
   17: 	background-color:#DEFAE9;
   18: 	bottom: 0;
   19: 	right: 1em;
   20: 	z-index: 10;
   21: 	margin: 0;
   22: 	padding-left: 0;
   23: 	padding-right: 5px;
   24: 	list-style-type: none;
   25: }
   26: ul.LC_GRADING_handininfo img {
   27: 	display: none;
   28: }
   29: ul.LC_GRADING_handininfo, ul.LC_GRADING_handininfo li {
   30: 	list-style-type: none;
   31: 	margin-left: 0;
   32: 	padding-left: 0;
   33: 	text-indent: .4em;
   34: }
   35: 
   36: div.LC_GRADING_maincontrols {
   37: 	border: 1px solid black;
   38: 	background-color:#FF0000;
   39: 	position: fixed;
   40: 	bottom: 0;
   41: 	left: 0;
   42: 	z-index: 2;
   43: }
   44: 
   45: 
   46: div.LC_GRADING_criteria {
   47: 	border-bottom: 1px solid #0A6331;
   48: 	margin-top: 0.5em;
   49: 	clear: both;
   50: }
   51: div.LC_GRADING_criteriatext {
   52: 	width: 450px;
   53: 	position: static;
   54: 	min-height: 5em;
   55: 	float: left;
   56: }
   57: 
   58: div.LC_GRADING_gradernote {
   59: 	width: 450px;
   60: 	font-weight: bold;
   61: 	margin-bottom: 0;
   62: }
   63: ul.LC_GRADING_navbuttons {
   64: 	display: none;
   65: }
   66: label.LC_GRADING_comment {
   67: 	visibility: hidden;
   68: 	float: left;
   69: }
   70: label.LC_GRADING_comment textarea {
   71: 	visibility: visible;
   72: /*	position: absolute;
   73: 	left: 570px;
   74: 	top: 0;*/
   75: 	float: left;
   76: 	padding-left: 5px;
   77: 	margin-top: -1em;
   78: 	z-index: 1;
   79: 	height: 5em;
   80: 	width: 400px;
   81: }
   82: div.LC_GRADING_grade {
   83: /*	position: absolute;
   84: 	left: 460px;
   85: 	top: 5px; */
   86: 	float: left;
   87: 	width: 105px;
   88: 	background-color:#CCCCCC;
   89: 	margin: 5px;
   90: }
   91: div.LC_GRADING_grade label {
   92: 	display: block;
   93: }
   94: 
   95: div.LC_GRADING_grade label.LC_GRADING_ungraded {
   96: 	display: none;
   97: }
   98: p#LC_GRADING_submission_time {
   99: 	font-style: italic;
  100: }
  101: div.LC_GRADING_pass {
  102: 	background-color: #DEFAE9;
  103: }
  104: div.LC_GRADING_fail {	
  105: 	background-color: #FF3366;
  106: }
  107: div.LC_GRADING_review {
  108: 	background-color: #FFFF99;
  109: }
  110: #LC_GRADING_gradingarea form {
  111: 	margin-bottom: 12em;
  112: }
  113: *>ul.LC_GRADING_handininfo {
  114: 	right: 0;
  115: }
  116: ul.LC_GRADING_pastgrading {
  117: 	margin-top: 0;
  118: 	margin-left: 430px;
  119: 	clear: left;
  120: 	list-style-type: none;
  121: 	font-size: 11px;
  122: }
  123: ul.LC_GRADING_pastgrading:before {
  124: 	content:"Prior Grading History:";
  125: }
  126: ul.LC_GRADING_pastgrading tt {
  127: 	font-weight: bold;
  128: 	font-style:normal;
  129: }
  130: ul.LC_GRADING_pastgrading a {
  131: 	text-decoration: none;
  132: }
  133: 
  134: 
  135: @media screen {
  136:   /* Don't do this at home */
  137:   * html
  138:     {
  139: 	overflow-x: hidden;
  140:     overflow-y: hidden;
  141: 	padding-right: .2em;
  142:     }
  143:   * html body
  144:     {
  145:     overflow-y: auto;
  146:     height: 100%;
  147:     font-size: 90%;
  148:     }
  149:   * html div.LC_GRADING_maincontrols, * html ul.LC_GRADING_handininfo
  150:     {
  151:     position: absolute;  
  152:     }
  153:    * html ul.LC_GRADING_handininfo {
  154:    	overflow-y: hidden;
  155: 	}
  156:   /* All done. */
  157: 
  158: }
  159: 
  160: .LC_fail, .LC_pass, .LC_neutral {
  161:     margin : 5px;
  162:     margin-bottom :10px;
  163:     padding : 4px;
  164:     padding-left : 75px;
  165: 	border : thin solid;
  166:     font-weight : bolder;
  167:     font-size: small;
  168:     font-family: Arial;
  169:     background-color : rgb(255,240,225);
  170: 	position: relative;
  171: }
  172: 
  173: div.LC_task_overall_status {
  174:  	border-width: 6px;
  175: 	border-style: outset;
  176: }
  177: 
  178: .LC_fail h4, .LC_pass h4 {
  179: 	left: -4px;
  180: 	top: -8px;
  181: 	padding:2px;
  182: 
  183: 	background-color : rgb(255,240,225);
  184: 	border : thin solid;
  185: 
  186: 	position:absolute;
  187: 	width: auto;
  188: 	margin: 0;
  189: }
  190: 
  191: .LC_question_grade {
  192: 	
  193: }
  194: 
  195: .LC_fail {
  196: 	color: red;
  197: }
  198: 
  199: .LC_pass {
  200:     color : green;
  201: }
  202: 
  203: .LC_neutral {
  204: 	color : blue;
  205: }
  206: 
  207: .LC_question {
  208: 	border : thin solid black;
  209: 	padding : 4px;
  210: 	margin-bottom : 1em;
  211: }
  212: 
  213: .LC_grade {
  214: 	font-size: x-large;
  215: 	font-family: Arial;
  216: 	left: 5px;
  217: 	top: -5px;
  218: 	width: auto;
  219: 	border: none;
  220: 	position:absolute;
  221: }
  222: 
  223: 
  224: div#LC_feedback h1 {
  225:     color : inherit;
  226: }
  227: h3 + font { display: none; }
  228: ol.LC_task_questions li.LC_task_question + li.LC_task_question {
  229: 	border-top: 1px solid black;
  230: }
  231: div.LC_criteria {
  232: 	margin-left: 3em;
  233: 
  234: }
  235: li.LC_task_question ul li.LC_task_subquestion + li.LC_task_subquestion {
  236: 	border-top: 1px dashed black;
  237: 	padding-top: .5em;
  238: }
  239: div.LC_criteria h4 + p:before { content: "Criteria: ";}
  240: /* div.LC_criteria p.LC_comment:before { content: "Comment: "; } */
  241: div.LC_criteria p.LC_comment { color: black; }
  242: div.LC_criteria form + p, div.LC_criteria h2 + p { display: none; }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>