Annotation of loncom/homework/task.css, revision 1.7

1.1       albertel    1: /* CSS Document */
                      2: div.LC_GRADING_task {
1.2       albertel    3: 	padding-bottom: 6em;
1.1       albertel    4: 	font-family:Verdana, Arial, Helvetica, sans-serif;
                      5: 	font-size: small;
                      6: }
                      7: 
                      8: /*
                      9: font table {
                     10: 	display: none; 
                     11: }
                     12: */
                     13: 
1.6       albertel   14: div.LC_question div.LC_question {
                     15:     margin-left: 5em;
                     16: }
                     17: 
1.1       albertel   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: }
1.4       albertel   61: 
                     62: div.LC_GRADING_gradernote {
1.1       albertel   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: .LC_fail, .LC_pass, .LC_neutral {
                    139:     margin : 5px;
                    140:     margin-bottom :10px;
                    141:     padding : 4px;
                    142:     padding-left : 75px;
                    143: 	border : thin solid;
                    144:     font-weight : bolder;
                    145:     font-size: small;
                    146:     font-family: Arial;
                    147:     background-color : rgb(255,240,225);
1.4       albertel  148: 	position: relative;
1.1       albertel  149: }
                    150: 
1.5       albertel  151: div.LC_task_overall_status {
                    152:  	border-width: 6px;
                    153: 	border-style: outset;
                    154: }
1.3       albertel  155: 
1.1       albertel  156: .LC_fail h4, .LC_pass h4 {
                    157: 	left: -4px;
                    158: 	top: -8px;
                    159: 	padding:2px;
1.4       albertel  160: 
1.1       albertel  161: 	background-color : rgb(255,240,225);
                    162: 	border : thin solid;
1.3       albertel  163: 
                    164: 	position:absolute;
                    165: 	width: auto;
                    166: 	margin: 0;
                    167: }
1.4       albertel  168: 
1.3       albertel  169: .LC_question_grade {
                    170: 	
1.1       albertel  171: }
                    172: 
                    173: .LC_fail {
                    174: 	color: red;
                    175: }
                    176: 
                    177: .LC_pass {
                    178:     color : green;
                    179: }
                    180: 
                    181: .LC_neutral {
                    182: 	color : blue;
                    183: }
                    184: 
                    185: .LC_question {
                    186: 	border : thin solid black;
                    187: 	padding : 4px;
                    188: 	margin-bottom : 1em;
                    189: }
                    190: 
                    191: .LC_grade {
                    192: 	font-size: x-large;
                    193: 	font-family: Arial;
                    194: 	left: 5px;
                    195: 	top: -5px;
1.3       albertel  196: 	width: auto;
                    197: 	border: none;
                    198: 	position:absolute;
1.1       albertel  199: }
                    200: 
1.4       albertel  201: 
1.1       albertel  202: div#LC_feedback h1 {
                    203:     color : inherit;
                    204: }
                    205: h3 + font { display: none; }
                    206: ol.LC_task_questions li.LC_task_question + li.LC_task_question {
                    207: 	border-top: 1px solid black;
                    208: }
                    209: div.LC_criteria {
                    210: 	margin-left: 3em;
                    211: 
                    212: }
                    213: li.LC_task_question ul li.LC_task_subquestion + li.LC_task_subquestion {
                    214: 	border-top: 1px dashed black;
                    215: 	padding-top: .5em;
                    216: }
1.4       albertel  217: div.LC_criteria h4 + p:before { content: "Criteria: ";}
                    218: /* div.LC_criteria p.LC_comment:before { content: "Comment: "; } */
                    219: div.LC_criteria p.LC_comment { color: black; }
                    220: div.LC_criteria form + p, div.LC_criteria h2 + p { display: none; }

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