mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-05-22 12:33:32 +08:00
Add README to generated project. (#33)
* Add README to generated project * add logo.svg * syntax cleanup
This commit is contained in:
24
template/src/App.css
Normal file
24
template/src/App.css
Normal file
@@ -0,0 +1,24 @@
|
||||
.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); }
|
||||
}
|
||||
Reference in New Issue
Block a user