diff --git a/build/css/styles.css b/build/css/styles.css index 68a79a569..e759438ac 100644 --- a/build/css/styles.css +++ b/build/css/styles.css @@ -1,7 +1,73 @@ @include foundation-everything; +@import url('https://fonts.googleapis.com/css?family=Didact+Gothic|Modak'); + +body{ + background-color: #3f51b5; +} + +canvas { + background: radial-gradient(white, silver); + position: fixed; +} main { - background: lightblue; + text-align: center; + font-family: Didact Gothic; + color: #eceff1; + width: 80%; + margin-left: auto; + margin-right: auto; + left: 0; + right: 0; + z-index: 1; + position: relative; + background-color: #3f51b5; + border-radius: 25px; +} + +h1{ + font-family: Modak; + color: #ff6f00; + font-size: 7rem; + position: relative; + z-index: 1; + text-align: center; + text-shadow: 1px 1px 0 #3f51b5, + -1px 1px 0 #3f51b5, + 1px -1px 0 #3f51b5, + -1px -1px 0 #3f51b5, + 0px 1px 0 #3f51b5, + 0px -1px 0 #3f51b5, + -1px 0px 0 #3f51b5, + 1px 0px 0 #3f51b5, + 2px 2px 0 #3f51b5, + -2px 2px 0 #3f51b5, + 2px -2px 0 #3f51b5, + -2px -2px 0 #3f51b5, + 0px 2px 0 #3f51b5, + 0px -2px 0 #3f51b5, + -2px 0px 0 #3f51b5, + 2px 0px 0 #3f51b5, + 1px 2px 0 #3f51b5, + -1px 2px 0 #3f51b5, + 1px -2px 0 #3f51b5, + -1px -2px 0 #3f51b5, + 2px 1px 0 #3f51b5, + -2px 1px 0 #3f51b5, + 2px -1px 0 #3f51b5, + -2px -1px 0 #3f51b5; + padding-top: 30px; + opacity: .7; + +} + +h1#rental-library:hover{ + color: #ffb300; + cursor:pointer; +} + +section.main-content{ + padding-top: 30px; } header { @@ -37,8 +103,93 @@ aside label { div { display: inline; } -/* -* { - border-style: solid; + +ul#movie-list { + list-style: none; +} + +li { + display: inline-block; + width: 20%; + margin: 15px 0px 15px 0px; +} + +li:hover{ + cursor:pointer; + color: #ff6f00; +} + +li:hover img{ + box-shadow:rgba(0, 0, 0, 0.3) 0 16px 16px 0; +} + +h3 { + display: inline; +} +img { + border-top: 2px solid #ffb300; + display: block; + margin: auto; +} + +button.success.btn-add{ + background-color: #ffb300; + color: #3f51b5; + padding: 2px; +} + +input#search { + width: 80%; + margin: auto; + background-color: #eceff1; +} + +button.btn-search{ + background-color: #ff6f00; + margin-top: 10px; +} + +button.btn-search:hover{ + background-color: #ffb300; + color: #3f51b5; +} +button.success.btn-add:hover{ + background-color: #ff6f00; +} + +img.api-credit{ + width: 20%; + border: none; +} + +footer{ + bottom: 0px; + text-align: center; + width: 100%; + padding: 10px; + margin-top: 30px; + background-color: #ff6f00; + z-index: 1; + position: relative; + opacity: .6; +} + +.close-modal { + float: right; + color: #3f51b5; + font-weight: bold; +} + +h4.close-modal:hover{ + cursor:pointer; +} + +#movie-details { + background-color: #ffb300; + color: black; + position: fixed; + z-index: 2; + left: 50%; + margin-left: -37.5%; + width: 75%; } -*/ diff --git a/build/index.html b/build/index.html index 03869595f..74420073b 100644 --- a/build/index.html +++ b/build/index.html @@ -1,15 +1,52 @@ -
+ +