Commit 3e63a814 by Kyle Fiedler

Added some style for the university blurbs and made the course boxes a little higher

parent f802022d
...@@ -79,4 +79,12 @@ ...@@ -79,4 +79,12 @@
} }
} }
} }
section.message {
border-top: 1px solid rgb(220,220,220);
@include clearfix;
margin-top: 20px;
padding-top: 60px;
@include columns(2 20px);
}
} }
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
.inner-wrapper { .inner-wrapper {
border: 1px solid rgba(255,255,255, 1); border: 1px solid rgba(255,255,255, 1);
height: 100%; height: 100%;
height: 180px; height: 200px;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
} }
...@@ -132,7 +132,7 @@ ...@@ -132,7 +132,7 @@
.info { .info {
background: rgb(255,255,255); background: rgb(255,255,255);
height: 180px + 130px; height: 220px + 130px;
left: 0px; left: 0px;
position: absolute; position: absolute;
top: 0px; top: 0px;
...@@ -140,7 +140,7 @@ ...@@ -140,7 +140,7 @@
width: 100%; width: 100%;
.cover-image { .cover-image {
height: 180px; height: 200px;
overflow: hidden; overflow: hidden;
width: 100%; width: 100%;
...@@ -153,7 +153,7 @@ ...@@ -153,7 +153,7 @@
.desc { .desc {
@include box-sizing(border-box); @include box-sizing(border-box);
height: 100px; height: 120px;
overflow: hidden; overflow: hidden;
padding: 10px 10px 12px 10px; padding: 10px 10px 12px 10px;
position: relative; position: relative;
...@@ -197,7 +197,7 @@ ...@@ -197,7 +197,7 @@
@include box-shadow(0 1px 16px 0 rgba($blue, 0.4)); @include box-shadow(0 1px 16px 0 rgba($blue, 0.4));
.info { .info {
top: -130px; top: -150px;
} }
.meta-info { .meta-info {
......
...@@ -3,17 +3,15 @@ ...@@ -3,17 +3,15 @@
<section class="find-courses"> <section class="find-courses">
<%block name="university_header"/> <%block name="university_header"/>
<br/>
<section class="container"> <section class="container">
<section class="message left">
<article>
<%block name="university_description" />
</article>
</section>
<section class="courses university-courses"> <section class="courses university-courses">
%for course in courses: %for course in courses:
<%include file="../course.html" args="course=course" /> <%include file="../course.html" args="course=course" />
%endfor %endfor
</section> </section>
<section class="message left">
<%block name="university_description" />
</section>
</section> </section>
</section> </section>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment