diff --git a/src/App.css b/src/App.css index 8212939..a2d0bb6 100644 --- a/src/App.css +++ b/src/App.css @@ -3,11 +3,13 @@ a.btn { } .btn { color: white !important; - border-radius: .5rem; - padding: .375rem 1.75rem; + border-radius: .3rem; + padding: .375rem 0; font-size: 1.1rem; cursor: pointer; transition: filter .3s ease-out; + width: 5em; + text-align: center; } .btn:disabled { cursor: not-allowed; @@ -33,6 +35,13 @@ button.btn { .btn-gray { background-color: #d9d9d9; } +.btn.btn-light { + background-color: #fcfafa; + color: #323232 !important; +} +.btn.btn-light:active { + color: #323232 !important; +} .btn-circle { border-radius: 50%; @@ -40,4 +49,8 @@ button.btn { height: 40px; padding: 8px; box-shadow: 1px 1px 4px 0 #0003; +} +.btn-straight { + border-radius: .15em; + width: 6em; } \ No newline at end of file diff --git a/src/index/index.css b/src/index/index.css index 2505452..7696544 100644 --- a/src/index/index.css +++ b/src/index/index.css @@ -1,42 +1,38 @@ -.poster{ - width: 100%; - height: 408px; - background-color: #80010A; - display: flex; - justify-content: center; +.poster { + width: 100%; + height: 400px; + background-color: #80010a; + display: flex; + flex-direction: column; + align-items: center; + position: relative; } -.img-poster{ - padding-left: 11%; +.img-poster { + height: 100%; } -.btn-partIn{ - border-radius: 5px; - border: 1px; - height: 45px; - width: 9%; - min-width: 130px; - font-size: 20px; - font-weight: bold; - background-color: #FCFAFA; - color:#323232; - margin-top: 330px; - margin-left:11%; - +.btn-partIn { + position: absolute; + right: 40px; + bottom: 20px; } -.message{ - width: 50%; - padding-left: 10%; - margin-top: 33px; - font-weight: bold; +.message { + width: calc(50% - 60px); + margin-top: 30px; } -.container{ - display: flex; - width: 100%; - height: 800px; +.container { + display: flex; + width: 1000px; + margin: 0 auto; + justify-content: space-between; } -.cut-line{ - display: flex; - height: 1px; - width: 80%; - background-color: #E6E6E6; +.cut-line { + display: flex; + height: 1px; + width: 100%; + background-color: #e6e6e6; +} +.little-title { + padding: .75em .5em; + font-size: 18px; } \ No newline at end of file diff --git a/src/index/index.js b/src/index/index.js index 5f74f05..569e7a2 100644 --- a/src/index/index.js +++ b/src/index/index.js @@ -1,19 +1,19 @@ import { Component } from 'react'; import { Link } from '../components/SingleRouter/SingleRouter'; +import { images } from '../resources.json'; import './index.css'; export class AppContainer extends Component { render() { return (