Mini Kabibi Habibi
/*
* Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
* See LICENSE in the project root for license information.
*/
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.transcribeDescriptionBox {
margin-left: 5%;
margin-top: 10px;
height: 30px;
right: auto;
top: 0;
width: 90%;
border-radius: 2px;
position: relative;
}
.buttonContainer {
width: 90%;
margin-left: 5%;
}
.uploadButtonBox {
margin-left: 9%;
margin-top: 30px;
height: 30px;
width: 110px;
position: relative;
border-radius: 2px;
float: left;
}
.recordButtonBox {
margin-top: 30px;
margin-right: 9%;
height: 30px;
right: auto;
width: 110px;
position: relative;
border-radius: 2px;
float: right;
}
.languageDropdownBox {
margin-left: 5%;
bottom: 15px;
height: 27px;
right: auto;
width: 90%;
position: relative;
border-radius: 2px;
}
.minutesUsedBox {
margin-left: 5%;
bottom: 4px;
height: 15px;
right: auto;
width: 82%;
position: relative;
border-radius: 2px;
}
.progressBox {
margin-left: 5%;
bottom: 0px;
height: 8px;
right: auto;
width: 31%;
position: relative;
border-radius: 2px;
}
.bottomBox {
bottom: 18px;
position: absolute;
width: 100%;
}
.shimmerGradient div {
animation-iteration-count: infinite;
animation-duration: 2s;
transform: translateX(-100%);
animation-timing-function: ease-in-out;
animation-direction: normal;
animation-name: shimmerAnimation;
background: linear-gradient(to right,rgba(243,242,241,.2) 0,rgba(255,255,253,.9) 50%,rgba(243,242,241,.2) 100%) 0 0/90% 100% no-repeat rgba(243,242,241,.1);
}
div.shimmerWrapper {
transform: translateZ(0);
background-color: rgba(209, 208, 207, 0.8);
transition: opacity 200ms ease 0s;
overflow: hidden;
}
div.shimmerElements {
height: 2.5em;
font-size: 14px;
font-weight: 400;
display: flex;
align-items: center;
flex-wrap: nowrap;
position: relative;
}
@keyframes shimmerAnimation {
0%
{
transform: translateX(-100%);
}
100%
{
transform: translateX(100%);
}
}
#shimmer {
height: 100%;
}