htdocs/css/boxer.css [250:329]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
}

ul.striped {
  padding: 0;
}

.striped li {
  padding: 1.5px;
  font-size: 0.9rem;
}

.striped li:nth-child(odd), .striped tr:nth-child(odd) {
  background-color: #f4f4f4;
  list-style: none;
  border: 1px solid #aaa;
  border-bottom: none;
}

.striped li:nth-child(even), .striped tr:nth-child(even) {
  background-color: #fbfbfb;
  list-style: none;
  border: 1px solid #aaa;
  border-bottom: none;
}

.striped li:last-child, .striped tr:last-child {
  border-bottom: 1px solid #aaa;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.striped li:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.striped td {
  padding: 6px;
}

.striped th {
  background: #333;
  color: white;
  padding: 4px;
}

button {
  background: #4477a1;
  background: linear-gradient(180deg, #81a8cb, #4477a1);
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  color: white;
}

.loader {
  font-size: 10px;
  margin: 100px auto;
  text-indent: -9999em;
  width: 16em;
  height: 16em;
  border-radius: 50%;
  background: darkblue;
  background: linear-gradient(to right, darkblue 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.loader:before {
  width: 50%;
  height: 50%;
  background: darkblue;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



htdocs/css/boxer.scss [278:355]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
}

ul.striped {
    padding: 0;
}

.striped li {
    padding: 1.5px;
    font-size: 0.9rem;
}
.striped li:nth-child(odd), .striped tr:nth-child(odd) {
    background-color: #f4f4f4;
    list-style: none;
    border: 1px solid #aaa;
    border-bottom: none;
}
.striped li:nth-child(even), .striped tr:nth-child(even) {
    background-color: #fbfbfb;
    list-style: none;
    border: 1px solid #aaa;
    border-bottom: none;
}
.striped li:last-child, .striped tr:last-child {
    border-bottom: 1px solid #aaa;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.striped li:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

.striped td {
    padding: 6px;
}

.striped th {
    background: #333;
    color: white;
    padding: 4px;
}

button {
    background: #4477a1;
    background: linear-gradient(180deg, #81a8cb, #4477a1);
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    color: white;
}



.loader {
    font-size: 10px;
    margin: 100px auto;
    text-indent: -9999em;
    width: 16em;
    height: 16em;
    border-radius: 50%;
    background: darkblue;
    background: linear-gradient(to right, darkblue 10%, rgba(255, 255, 255, 0) 42%);
    position: relative;
    -webkit-animation: load3 1.4s infinite linear;
    animation: load3 1.4s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}
.loader:before {
    width: 50%;
    height: 50%;
    background: darkblue;
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



