mirror of
https://github.com/react-webpack-generators/generator-react-webpack.git
synced 2025-12-08 18:01:59 +00:00
TODO: - App tests - Generator tests - Component generator Signed-off-by: Simon Bailey <simon@newtriks.com>
42 lines
493 B
CSS
42 lines
493 B
CSS
/* Stiziles */
|
|
|
|
html, body {
|
|
background: #222222;
|
|
}
|
|
|
|
/* main */
|
|
|
|
.main {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #222222;
|
|
color: #fff;
|
|
}
|
|
|
|
.main img {
|
|
width: 103px;
|
|
height: 89px;
|
|
margin-bottom: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
/* transitions */
|
|
|
|
.fade-enter {
|
|
opacity: 0.01;
|
|
transition: opacity .5s ease-in;
|
|
}
|
|
|
|
.fade-enter.fade-enter-active {
|
|
opacity: 1;
|
|
}
|
|
|
|
.fade-leave {
|
|
opacity: 1;
|
|
transition: opacity .5s ease-in;
|
|
}
|
|
|
|
.fade-leave.fade-leave-active {
|
|
opacity: 0.01;
|
|
}
|