Skip to content
Snippets Groups Projects
Commit f5e4b0b5 authored by john's avatar john
Browse files

fix dashboard css errors and lesson book row left padding

parent e3f59ca3
No related branches found
No related tags found
No related merge requests found
$primary-color: #515253; $primary-color: #515253;
$black: #000;
$dark-grey: #fff;
$grey: #808080;
$maroon: #502424;
$medium-grey: #838587;
.bookList { .bookList {
.bookTitle { .bookTitle {
border-bottom: .1em solid; border-bottom: .1em solid;
position: relative; position: relative;
} }
h1, .h1 { h1,
font-weight: 500; .h1 {
font-style: italic;
font-size: 48px; font-size: 48px;
font-style: italic;
font-weight: 500;
line-height: 56px; line-height: 56px;
margin: 0; margin: 0;
} }
h2, .h2 { h2,
.h2 {
color: $primary-color; color: $primary-color;
font-size: 32px; font-size: 32px;
font-style: italic; font-style: italic;
...@@ -24,9 +32,9 @@ $primary-color: #515253; ...@@ -24,9 +32,9 @@ $primary-color: #515253;
} }
.addBookBtn { .addBookBtn {
background-color: grey; background-color: $grey;
border: 1px solid grey; border: 1px solid $grey;
color: #fff; color: $dark-grey;
cursor: pointer; cursor: pointer;
float: right; float: right;
font-size: 16px; font-size: 16px;
...@@ -36,44 +44,47 @@ $primary-color: #515253; ...@@ -36,44 +44,47 @@ $primary-color: #515253;
text-align: center; text-align: center;
&:hover { &:hover {
border: 1px solid #000; border: 1px solid $black;
} }
a { a {
color: #fff;
text-decoration: none;
position: relative;
bottom: 14px; bottom: 14px;
color: $dark-grey;
position: relative;
text-decoration: none;
&:hover { &:hover {
cursor: pointer;
text-decoration: none; text-decoration: none;
cursor:pointer;
} }
} }
} }
.bookContainer { .bookContainer {
border-bottom: 1px solid #838587; border-bottom: 1px solid $medium-grey;
margin-top: 3em; margin-top: 3em;
padding-bottom: 0; padding-bottom: 0;
padding-left: 2em; padding-left: 1em;
padding-top: 0; padding-top: 0;
position: relative; position: relative;
} }
.bookActions { .bookActions {
bottom: 0; bottom: 0;
right: 13px;
position: absolute; position: absolute;
right: 13px;
} }
.editBook { .editBook {
color: #838587; color: $medium-grey;
text-decoration: none; display: inline-block;
font-style: italic; font-style: italic;
font-weight: 500; font-weight: 500;
display: inline-block;
margin-left: 13px; margin-left: 13px;
text-decoration: none;
&:hover { &:hover {
color:#502424; color: $maroon;
text-decoration: none; text-decoration: none;
} }
} }
......
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