summaryrefslogtreecommitdiff
path: root/src/App.css
blob: 5d32cc64f35e76542abf323ef1f8a9e9795698b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
.App {
  box-sizing: border-box;
  padding-left: 2em;
  padding-right: 2em;
}

.left {
  width: 200px;
  float: left;
}

.right {
  margin-left: 220px;
}

@media only screen and (max-width: 768px) {
  .left {
    width: 100%;
    float: none
  }

  .right {
    margin-left: 0;
  }
}

.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;
}