summaryrefslogtreecommitdiff
path: root/src/App.css
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2018-08-04 16:26:26 -0700
committerJesse Morgan <jesse@jesterpm.net>2018-08-04 16:26:26 -0700
commit39cf3a42bebbc3eaeb9317e9079412f6eed5e441 (patch)
tree32f7916c8fafe7db2b9c27d22792a7408c8d9464 /src/App.css
Group Finder Beta!
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;
+}