summaryrefslogtreecommitdiff
path: root/talerbackoffice/backoffice/static/backoffice.css
blob: 1278d04d9afca758cf6f353bd65277d73061cef8 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}

#history-container {
  margin-bottom: 10cm;
}

.date, .amount {
  text-align: right;
}

.summary {
  text-indent: 4%;
}

.even {
  background-color: #ECFCEC
}

.odd {
  background-color: #FFF7E6
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  position: relative;
  transition: all 5s ease-in-out;
  left: 50%;
  top: 20%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 45%;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 10px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .track-content {
  max-height: 30%;
  overflow: auto;
  display: inline-block;
  width: 100%;
}

.track-content table {
  width: 100%;
}

th {
  text-align: left;
}

@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}

#marker {
  text-align: center;
  padding: 0px;
  padding-bottom: 4px;
  border: 0px;
  border-bottom: 2px;
  border-style: solid;
  margin-bottom: 50px;
  font-size: 70%;
}

.loader {
  margin-left: 30%;
  border: 7px solid #f3f3f3; /* Light grey */
  border-top: 7px solid #696969; /* Blue */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.order-id, .wtid, .amount, .date {
  font-family: monospace;
  font-size: 140%;
  white-space: nowrap;
}

.summary {
  font-size: 90%;
}