Update style components

This commit is contained in:
Francesco Esposito 2019-04-03 23:09:38 +02:00
parent 622121b96e
commit 469fca432f
7 changed files with 54 additions and 70 deletions

26
src/components/Box.css Normal file
View File

@ -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);
}

View File

@ -1,18 +1,19 @@
import React, { Component } from 'react'; import React, { Component } from 'react';
import { Button, Row, Col } from 'reactstrap'; import { Button, Row, Col } from 'reactstrap';
import './ButtonBox.css'; import './Box.css';
class ButtonBox extends Component { class Box extends Component {
constructor(props) { constructor(props) {
super(props); super(props);
this.state = {};
} }
render() { render() {
return ( return (
<div className="button-box"> <div className="box">
<Row> <Row>
<Col> <Col xs="12">
<Button <Button
className="button" className="button"
block block
@ -25,13 +26,10 @@ class ButtonBox extends Component {
</Button> </Button>
</Col> </Col>
</Row> </Row>
<Row <Row>
className="top-margin" <Col xs="6" md="6">
>
<Col>
<Button <Button
className="button" className="button"
block
color="danger" color="danger"
size="lg" size="lg"
onClick={this.props.stopTimer} onClick={this.props.stopTimer}
@ -40,11 +38,9 @@ class ButtonBox extends Component {
STOP STOP
</Button> </Button>
</Col> </Col>
<Col xs="6" md="6">
<Col>
<Button <Button
className="button" className="button"
block
color="secondary" color="secondary"
size="lg" size="lg"
onClick={this.props.resetTimer} onClick={this.props.resetTimer}
@ -59,4 +55,4 @@ class ButtonBox extends Component {
} }
} }
export default ButtonBox; export default Box;

View File

@ -1,19 +0,0 @@
.button {
font-size: 20px;
font-weight: bold;
height: 60px;
border-radius: 25px;
box-shadow: 0 0 1px #161616, 0 0 10px rgb(133, 133, 133);
}
.button-box {
background-color: rgba(255, 255, 255, 1.0);
padding: 20px;
margin-top: 5px;
border-radius: 25px;
box-shadow:0 0 1px #111010, 0 0 10px rgb(193, 194, 190);
}
.top-margin {
margin-top: 18px;
}

View File

@ -1,16 +1,17 @@
.App-logo { .App-logo {
height: 25vmin; height: 130px;
filter: drop-shadow(0 0 0.50rem #f8ff9c); filter: drop-shadow(0 0 0.30rem #f8ff9c);
align-items: center; align-items: center;
justify-content: center; justify-content: center;
text-align: center; text-align: center;
transition: all .3s ease-in-out;
} }
.App-logo:hover { transform: scale(1.2); }
.App-logo-rotation { .App-logo-rotation {
animation: App-logo-spin infinite 5s linear; animation: App-logo-spin infinite 5s linear;
} }
@keyframes App-logo-spin { @keyframes App-logo-spin {
from { from {

View File

@ -1,8 +1,8 @@
import React, { Component } from 'react'; import React, { Component } from 'react';
import logo from '../logo.svg'; import logoSVG from '../logo.svg';
import './LogoSpin.css'; import './Logo.css';
class LogoSpin extends Component { class Logo extends Component {
constructor(props) { constructor(props) {
super(props); super(props);
this.defaultClassName = 'App-logo-rotation'; this.defaultClassName = 'App-logo-rotation';
@ -12,7 +12,7 @@ class LogoSpin extends Component {
return ( return (
<img <img
className={`App-logo ${this.props.isStarted ? this.defaultClassName: ''}`} className={`App-logo ${this.props.isStarted ? this.defaultClassName: ''}`}
src={logo} src={logoSVG}
alt="Tomato" alt="Tomato"
title="Click on the tomato to change modes" title="Click on the tomato to change modes"
onClick={this.props.switchMode} onClick={this.props.switchMode}
@ -22,4 +22,4 @@ class LogoSpin extends Component {
} }
export default LogoSpin; export default Logo;

View File

@ -1,24 +1,6 @@
.timer { .timer {
font-size: 120px; font-size: 100px;
font-weight: 600; font-weight: normal;
text-shadow: 0 0 1px #ce2e2e, 0 0 8px rgb(193, 194, 190); text-shadow: 0 0 1px #4b4b4b, 0 0 5px rgb(193, 194, 190);
color: white; color: white;
} }
.buttons {
font-size: 20px;
font-weight: bold;
height: 60px;
border-radius: 25px;
box-shadow: 0 0 1px #161616, 0 0 10px rgb(133, 133, 133);
}
.button-box {
background-color: rgba(255, 255, 255, 1.0);
padding: 20px;
margin-top: 5px;
border-radius: 25px;
box-shadow:0 0 1px #111010, 0 0 10px rgb(193, 194, 190);
}

View File

@ -1,8 +1,8 @@
import React, { Component } from 'react'; import React, { Component } from 'react';
import { Container, Row, Col } from 'reactstrap'; import { Container, Row, Col } from 'reactstrap';
import Notification from './Notification'; import Notification from './Notification';
import ButtonBox from './ButtonBox'; import Box from './Box';
import LogoSpin from './LogoSpin'; import Logo from './Logo';
import './Timer.css'; import './Timer.css';
class Timer extends Component { class Timer extends Component {
@ -119,13 +119,12 @@ class Timer extends Component {
<Container> <Container>
<Row> <Row>
<Col> <Col>
<LogoSpin <Logo
isStarted={this.state.started} isStarted={this.state.started}
switchMode={this.switchMode} switchMode={this.switchMode}
/> />
</Col> </Col>
</Row> </Row>
<Row> <Row>
<Col> <Col>
<p <p
@ -135,10 +134,9 @@ class Timer extends Component {
</p> </p>
</Col> </Col>
</Row> </Row>
<Row> <Row>
<Col> <Col md={{ size: 6, offset: 3 }}>
<ButtonBox <Box
startTimer={this.startTimer} startTimer={this.startTimer}
stopTimer={this.stopTimer} stopTimer={this.stopTimer}
isStarted={this.state.started} isStarted={this.state.started}