summaryrefslogtreecommitdiff
path: root/src/App.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.css')
-rw-r--r--src/App.css44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/App.css b/src/App.css
new file mode 100644
index 0000000..986f62e
--- /dev/null
+++ b/src/App.css
@@ -0,0 +1,44 @@
+.App {
+ box-sizing: border-box;
+ padding-left: 2em;
+ padding-right: 2em;
+}
+
+.left {
+ width: 200px;
+ float: left;
+}
+
+.right {
+ margin-left: 220px;
+}
+
+.clear {
+ clear: both;
+}
+
+.loading {
+ margin: 2rem auto 2rem auto;
+ text-align: center;
+ font-weight: bold;
+}
+
+.loading .spinner {
+ animation: spinner-spin infinite 10s linear;
+ margin: 26px 0 26px 0;
+}
+
+@keyframes spinner-spin {
+ from { transform: rotate(0deg); }
+ to { transform: rotate(360deg); }
+}
+
+.error {
+ width: 75%;
+ margin: 1rem auto 1rem auto;
+ padding: 1rem;
+ border: solid 1px #ebccd1;
+ border-radius: 4px;
+ color: #a94442;
+ background-color: #f2dede;
+}