Files
create-react-app/template/src/App.css
eanplatter a6edb523a8 Add README to generated project. (#33)
* Add README to generated project

* add logo.svg

* syntax cleanup
2016-07-21 05:05:41 +01:00

25 lines
323 B
CSS

.App {
text-align: center;
}
.App-logo {
animation: spin infinite 20s linear;
height: 80px;
}
.App-header {
background-color: #222;
height: 150px;
padding: 20px;
color: white;
}
.App-intro {
font-size: large;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}