diff options
| author | Waref Haque <warefhaque@Warefs-MacBook-Pro.local> | 2016-07-09 04:43:06 +0000 |
|---|---|---|
| committer | Waref Haque <warefhaque@Warefs-MacBook-Pro.local> | 2016-07-09 04:43:06 +0000 |
| commit | 65e9a1bfce945812f204ce1cbcccc0686f846782 (patch) | |
| tree | 01a3c0c8f0d7459dd9f17d68c8fde7cc8210773e /assets/css/style.css | |
| parent | a98e2d49fcf955402040af48c8d2520df71ea878 (diff) | |
HTML+CSS commit of exams page P2- proper addition of files
Diffstat (limited to 'assets/css/style.css')
| -rw-r--r-- | assets/css/style.css | 62 |
1 files changed, 55 insertions, 7 deletions
diff --git a/assets/css/style.css b/assets/css/style.css index a56b979..6984c8c 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -116,7 +116,7 @@ main{ /* Changes - search is a flex container for h2 and bar, removed various attributes */ -main #search { +main .search { flex: 1; width: 60%; height: 100%; @@ -126,7 +126,7 @@ main #search { } /* Changes - added h2 styiling for main */ -main #search h2{ +main .search h2{ font-family: 'Lato', sans-serif; color: gray; font-size: 2.5em; @@ -134,7 +134,7 @@ main #search h2{ padding-top: 200px; /* Change to move search bar content. Keep as pixel*/ } -main #search input[type=text] { +main .search input[type=text] { display: inline; width: 250px; height: 40px; @@ -153,11 +153,11 @@ main #search input[type=text] { transition: width 0.4s ease-in-out; } -main #search input[type=text]:focus { +main .search input[type=text]:focus { width: 50%; } -main #search img { +main .search img { width: 50px; display: inline; } @@ -166,7 +166,7 @@ main #search img { footer { background-color: #333333; bottom: 0; - height: 12%; + height: 12%; } footer #footer-container{ @@ -196,5 +196,53 @@ footer nav a { vertical-align: top; } +/***********************************************************************************************************************/ - +/*THE SOLUTIONS PAGE BEGINS HERE*/ +#solutions-header{ + color: #333333; + font-family: 'Roboto', sans-serif; +} +#solutions-main{ + min-height: 87%; +} +/*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%; + cursor: pointer; +} +/*the title of the course*/ +h3.solutions-title{ + font-family: 'Roboto',sans-serif; + font-size: large; + color: #333333; + margin-left: 5%; + margin-bottom: 5px; + padding-top: 20px; +} +/*the time of the examination*/ +p.solutions-time{ + font-family: 'Roboto',sans-serif; + 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; +} + +#solutions-footer{ + height: 13%; +}
\ No newline at end of file |
