diff options
| author | nanalelfe <nargiza.nosirova@mail.utoronto.ca> | 2016-07-13 07:05:21 +0000 |
|---|---|---|
| committer | nanalelfe <nargiza.nosirova@mail.utoronto.ca> | 2016-07-13 07:05:21 +0000 |
| commit | 5309529a6f451fd5cae0da74826679393f5352b5 (patch) | |
| tree | cbe0565e93a415d45477847220b223e0a54992b7 | |
| parent | 697d2dd4cc5f8b6d4c897c29278038ed2e6ac187 (diff) | |
Styled exams.html
| -rw-r--r-- | assets/css/style.css | 26 | ||||
| -rw-r--r-- | exams.html | 22 |
2 files changed, 28 insertions, 20 deletions
diff --git a/assets/css/style.css b/assets/css/style.css index 645d1c1..c02f0c7 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -310,6 +310,11 @@ main [id^="sol-"] div.comments ul li p.user-comment { text-align: left; } + +#solutions-main em { + font-weight: bold; +} + /*the section which holds each of the solutions*/ section.solutions-card{ @@ -334,9 +339,14 @@ section.solutions-card img { height: auto; } +h4.search-head { + margin-left: 5%; + margin-top: 2%; + color: dimgray; +} + /*the title of the course*/ h3.solutions-title{ - font-family: 'Roboto',sans-serif; font-size: large; color: #333333; margin-left: 5%; @@ -344,22 +354,16 @@ h3.solutions-title{ padding-top: 20px; } /*the time of the examination*/ -p.solutions-time{ - font-family: 'Roboto',sans-serif; +p.solutions-time, p.solutions-type, p.exam-instr{ font-size: medium; color: dimgrey; margin-left: 5%; margin-top: 0px; - margin-bottom: 2px; } /*whether its a midterm or final exam*/ -p.solutions-type{ - font-family: 'Roboto',sans-serif; - font-size: medium; - color: dimgrey; - margin-left: 5%; - margin-top: 0px; - padding-bottom: 20px; + +p.solutions-time { + margin-bottom: 2px; } #solutions-footer{ @@ -93,28 +93,32 @@ <main id = 'solutions-main'> <div class = 'search container' id = 'solutions-div'> - <h1 id = 'solutions-header'>All Exams</h1> + <h4 class='search-head'>Search results for "CSC148"</h4> <section class = 'solutions-card'> - <h3 class = 'solutions-title'>CSC309 - Programming on the Web</h3> - <p class = 'solutions-time' >Summer, 2016</p> + <h3 class = 'solutions-title'>CSC148 - Introduction to Computer Science</h3> + <p class = 'solutions-time' ><em>Term: </em>Winter 2015</p> + <p class = 'exam-instr'><em>Instructors: </em>Fairgrieve and Hangerman</p> <p class = 'solutions-type'>Final Examination</p> </section> <section class = 'solutions-card'> - <h3 class = 'solutions-title'>ECE344 - Operating Systems</h3> - <p class = 'solutions-time' >Winter, 2016</p> + <h3 class = 'solutions-title'>CSC148 - Introduction to Computer Science</h3> + <p class = 'solutions-time' ><em>Term: </em>Fall 2014</p> + <p class = 'exam-instr'><em>Instructors: </em>Campbell and Fairgrieve</p> <p class = 'solutions-type'>Midterm Examination</p> </section> <section class = 'solutions-card'> - <h3 class = 'solutions-title'>ECE345 - Algorithms and Data Structures</h3> - <p class = 'solutions-time' >Fall, 2015</p> + <h3 class = 'solutions-title'>CSC148 - Introduction to Computer Science</h3> + <p class = 'solutions-time' ><em>Term: </em>Winter 2014</p> + <p class = 'exam-instr'><em>Instructors: </em>Campbell and Papadopoulou</p> <p class = 'solutions-type'>Final Examination</p> </section> <section class = 'solutions-card'> - <h3 class = 'solutions-title'>CSC343 - Introduction to Databases</h3> - <p class = 'solutions-time' >Fall, 2014</p> + <h3 class = 'solutions-title'>CSC148 - Introduction to Computer Science</h3> + <p class = 'solutions-time' ><em>Term: </em>Fall 2013</p> + <p class = 'exam-instr'><em>Instructors: </em>Craig and Gries</p> <p class = 'solutions-type'>Final Examination</p> </section> </div> |
