File:  [LON-CAPA] / loncom / homework / task.css
Revision 1.6: download - view: text, annotated - select for diffs
Tue Nov 28 16:36:05 2006 UTC (17 years, 5 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- fix the indenting of sub questions

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

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