summaryrefslogtreecommitdiffstats
path: root/frontend/src/App.css
diff options
context:
space:
mode:
authorJan Tuomi <jan.tuomi@eficode.com>2020-01-31 19:20:13 +0200
committerJan Tuomi <jan.tuomi@eficode.com>2020-01-31 19:20:13 +0200
commitfbf108595a00a7c9db5984158e4b02cc345b68d1 (patch)
treef3342eac03006d40a23a49fac94db7061abf5d3c /frontend/src/App.css
Initial commit
Diffstat (limited to 'frontend/src/App.css')
-rw-r--r--frontend/src/App.css51
1 files changed, 51 insertions, 0 deletions
diff --git a/frontend/src/App.css b/frontend/src/App.css
new file mode 100644
index 0000000..e51f431
--- /dev/null
+++ b/frontend/src/App.css
@@ -0,0 +1,51 @@
+.App {
+ margin: 1rem;
+}
+
+.App-logo {
+ height: 40vmin;
+ pointer-events: none;
+}
+
+@media (prefers-reduced-motion: no-preference) {
+ .App-logo {
+ animation: App-logo-spin infinite 20s linear;
+ }
+}
+
+.App-header {
+ background-color: #282c34;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ font-size: calc(10px + 2vmin);
+ color: white;
+}
+
+.App-link {
+ color: #61dafb;
+}
+
+@keyframes App-logo-spin {
+ from {
+ transform: rotate(0deg);
+ }
+ to {
+ transform: rotate(360deg);
+ }
+}
+
+.error {
+ color: red;
+}
+
+.warning {
+ color: burlywood;
+}
+
+input,
+button {
+ display: block;
+}