From 99bf3b80d9f498695832a2543a253db66fda93bb Mon Sep 17 00:00:00 2001 From: nanalelfe Date: Wed, 13 Jul 2016 02:45:16 -0400 Subject: Styled questions.html --- assets/css/style.css | 45 ++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 40 insertions(+), 5 deletions(-) (limited to 'assets/css') diff --git a/assets/css/style.css b/assets/css/style.css index c3aae4a..4987db6 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -300,17 +300,33 @@ main [id^="sol-"] div.comments ul li p.user-comment { #solutions-main{ min-height: 100%; padding-top: 65px; + text-align: left; } /*the section which holds each of the solutions*/ + section.solutions-card{ text-align: left; background-color: white; border-radius: 20px; width: 95%; margin-left: 2.5%; + margin-bottom: 2%; cursor: pointer; + padding-bottom: 5px; +} + +section.solutions-card .right-arrow { + vertical-align: middle; +} + +section.solutions-card img { + margin-top: 12px; + margin-right: 8px; + width: 40px; + height: auto; } + /*the title of the course*/ h3.solutions-title{ font-family: 'Roboto',sans-serif; @@ -345,23 +361,42 @@ p.solutions-type{ /**********************************************************************************************************************/ +/*THE EXAM QUESTIONS PAGE BEGINS HERE*/ +.exam-info { + margin-left: 5%; + display: inline-block; +} + +img.exam-info { + padding: 10px; + min-width: 30%; + vertical-align: top; +} + +section.exam-info em { + font-weight: bold; +} + + + .questions-number{ - font-family: 'Roboto',sans-serif; font-size: large; color: #333333; margin-left: 5%; margin-bottom: 5px; - padding-top: 15px; + } -.questions-comment{ - font-family: 'Roboto',sans-serif; +.questions-comment, .questions-sol-num{ font-size: medium; color: dimgrey; - margin-left: 5%; margin-top: 0px; padding-bottom: 15px; } +.questions-sol-num { + margin-left: 5%; +} + /********** user-profile styles **********/ .user-info-content{ padding-top: 100px; -- cgit v1.2.3 From 5309529a6f451fd5cae0da74826679393f5352b5 Mon Sep 17 00:00:00 2001 From: nanalelfe Date: Wed, 13 Jul 2016 03:05:21 -0400 Subject: Styled exams.html --- assets/css/style.css | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) (limited to 'assets/css') 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{ -- cgit v1.2.3