diff options
Diffstat (limited to 'src/App.css')
-rw-r--r-- | src/App.css | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/App.css b/src/App.css new file mode 100644 index 0000000..92f956e --- /dev/null +++ b/src/App.css | |||
@@ -0,0 +1,32 @@ | |||
1 | .App { | ||
2 | text-align: center; | ||
3 | } | ||
4 | |||
5 | .App-logo { | ||
6 | animation: App-logo-spin infinite 20s linear; | ||
7 | height: 40vmin; | ||
8 | } | ||
9 | |||
10 | .App-header { | ||
11 | background-color: #282c34; | ||
12 | min-height: 100vh; | ||
13 | display: flex; | ||
14 | flex-direction: column; | ||
15 | align-items: center; | ||
16 | justify-content: center; | ||
17 | font-size: calc(10px + 2vmin); | ||
18 | color: white; | ||
19 | } | ||
20 | |||
21 | .App-link { | ||
22 | color: #61dafb; | ||
23 | } | ||
24 | |||
25 | @keyframes App-logo-spin { | ||
26 | from { | ||
27 | transform: rotate(0deg); | ||
28 | } | ||
29 | to { | ||
30 | transform: rotate(360deg); | ||
31 | } | ||
32 | } | ||