diff --git a/src/components/Box.css b/src/components/Box.css new file mode 100644 index 0000000..47d9bc1 --- /dev/null +++ b/src/components/Box.css @@ -0,0 +1,26 @@ +.button { + font-size: 16px; + font-weight: lighter; + height: 50px; + border-radius: 40px; + width: 100%; + margin: 5px 0px 5px 0px; + transition: all .2s ease-in-out; + box-shadow:0 0 1px #111110, 0 0 10px rgb(193, 194, 190); +} + +.box { + padding: 10px; + background-color: white; + border-radius: 10px; + box-shadow:0 0 1px #111010, 0 0 10px rgb(193, 194, 190); +} + +.button:hover { + transform: scale(1.01); +} + +.button:focus { + transform: scale(1.01); + box-shadow:0 0 5px #111010, 0 0 10px rgb(193, 194, 190); +} \ No newline at end of file diff --git a/src/components/ButtonBox.js b/src/components/Box.js similarity index 80% rename from src/components/ButtonBox.js rename to src/components/Box.js index af2d53f..7b1a889 100644 --- a/src/components/ButtonBox.js +++ b/src/components/Box.js @@ -1,18 +1,19 @@ import React, { Component } from 'react'; import { Button, Row, Col } from 'reactstrap'; -import './ButtonBox.css'; +import './Box.css'; -class ButtonBox extends Component { +class Box extends Component { constructor(props) { super(props); + this.state = {}; } render() { return ( -
+
- +