diff --git a/.gitignore b/.gitignore index fcd188e..c3781a2 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,5 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +.idea + diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 0000000..aa4f55f --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..79ee123 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..c6cc8c8 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..24eb271 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..ab3f0eb --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/react-starter.iml b/.idea/react-starter.iml new file mode 100644 index 0000000..24643cc --- /dev/null +++ b/.idea/react-starter.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..70fc8fc --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + DEFINITION_ORDER + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); + } + +} + diff --git a/src/index.js b/src/index.js index aa436e4..adc3feb 100644 --- a/src/index.js +++ b/src/index.js @@ -7,9 +7,9 @@ import ReactDOM from 'react-dom'; import App from './components/App'; // STYLES - +import 'bootstrap/dist/css/bootstrap.min.css'; import 'normalize.css'; import './styles/app.scss'; -ReactDOM.render(, document.getElementById('app')); \ No newline at end of file +ReactDOM.render(, document.getElementById('app')); \ No newline at end of file diff --git a/src/styles/_base.scss b/src/styles/_base.scss deleted file mode 100644 index 5a64c25..0000000 --- a/src/styles/_base.scss +++ /dev/null @@ -1,23 +0,0 @@ -body { - background-color: $charcoal; - font-family: $font-family; -} - -.container { - align-items: center; - display: flex; - flex-flow: column; - height: 100vh; - justify-content: center; -} - -.logo { - padding-top: 20px; -} - -.title { - color: $smoke; - font-size: 48px; - text-transform: uppercase; - text-shadow: 0 0 20px black; -} \ No newline at end of file diff --git a/src/styles/app.scss b/src/styles/app.scss index 6235b8a..7dc0156 100644 --- a/src/styles/app.scss +++ b/src/styles/app.scss @@ -1,2 +1,3 @@ @import '_settings.scss'; -@import '_base.scss'; \ No newline at end of file +@import '_base.scss'; +@import 'book.scss'; \ No newline at end of file diff --git a/src/styles/book.scss b/src/styles/book.scss new file mode 100644 index 0000000..366a099 --- /dev/null +++ b/src/styles/book.scss @@ -0,0 +1,39 @@ +.card{ + flex-direction: row; + background-color: transparent; +} + +.card-img{ + width: 250px; + height: 300px; +} + +.modal-dialog { + max-width: 90%; +} + +.modal-content{ + background-image: url("../books.jpg"); + background-repeat: no-repeat; + background-size: 100% 100%; + border-radius: 7%; +} + +.bg{ + width: 100%; + background: rgba(255, 255, 255, 0.5); + position: absolute; + top: 0; + left: 0; + height: 100%; + border-radius: 7%; +} + +.modal img{ + width: 200px; + height: 200px; +} + +.main{ + background-image: url("../bookBg.jpg"); +} \ No newline at end of file