Newer
Older
medialib-manager / scss / main.scss
a {
  text-decoration: none;
}

/* LOADING SPINNER  */

.loading-spinner-container {
	width: 100%;
	margin: 50px auto;
	text-align: center;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #777;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
} 

/* END LOADING SPINNER  */

.transcodate-form-container {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
}

.transcodate-form-container > .form-control {
	display: flex;
	flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
}

.transcodate-form-container > .form-control > strong {
	white-space: nowrap;
	display: inline-block;
  width: 100px;
}

.crf-range {
  margin-left: 5px;
}

#progress {
  margin-top: 20px;
  margin-bottom: 0;
}

.progress-circle {
/*  transform: rotate(-90deg);*/
}

.circle-bg {
  stroke-dasharray: 100, 100;
}

.circle-progress {
  transition: stroke-dasharray 0.3s ease;
}

.list-group-item.task {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.list-group-item.task .file {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}