| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 | // Disable animation if transitions are disabled@if $enable-transitions {  @keyframes progress-bar-stripes {    from {      background-position: $progress-height 0;    }    to {      background-position: 0 0;    }  }}.progress {  display: flex;  height: $progress-height;  overflow: hidden; // force rounded corners by cropping it  line-height: 0;  @include font-size($progress-font-size);  background-color: $progress-bg;  @include border-radius($progress-border-radius);  @include box-shadow($progress-box-shadow);}.progress-bar {  display: flex;  flex-direction: column;  justify-content: center;  overflow: hidden;  color: $progress-bar-color;  text-align: center;  white-space: nowrap;  background-color: $progress-bar-bg;  @include transition($progress-bar-transition);}.progress-bar-striped {  @include gradient-striped();  background-size: $progress-height $progress-height;}@if $enable-transitions {  .progress-bar-animated {    animation: $progress-bar-animation-timing progress-bar-stripes;    @if $enable-prefers-reduced-motion-media-query {      @media (prefers-reduced-motion: reduce) {        animation: none;      }    }  }}.BA-logo {  width: 250px;  margin-left: auto;  margin-right: auto;  padding-bottom: 10px;}.BA-header {  font-family: "Times New Roman", Times, serif;  text-align: center;  padding-bottom: 20px;}.BA-div {  padding-top: 100px;}.BA-p p {  padding: 10px;}.BA-body {  font-family: "Times New Roman", Times, serif;  padding-top: 0px;  padding-left: 50px;  padding-right: 50px;}.demo {  border: 1px solid #C0C0C0;  border-collapse: collapse;  padding: 5px;  margin-left: auto;  margin-right: auto;}.demo th {  border: 1px solid #C0C0C0;  padding: 5px;  background: #F0F0F0;  text-align: center;}.demo td {  border: 1px solid #C0C0C0;  padding: 5px;  height: 100px;  min-width: 200px;}.table-a {  border: 1px solid #C0C0C0;  border-collapse: collapse;  margin-top: 20px;  margin-bottom: 20px;  padding: 5px;  margin-left: -128px auto;  margin-right: auto;  table-layout: fixed;}.table-a th {  border: 1px solid #C0C0C0;  padding: 5px;  background: #F0F0F0;  text-align: center;}.table-a td {  border: 1px solid #C0C0C0;  padding: 5px;  word-wrap: break-word;  max-width: 150px;}#footer {  position: fixed;  width: 100%;  bottom: 0;  left: 0;  right: 0;  text-align: center;  color: #979595;}////////////////////////////-----SuratBA_A// body {//   margin: 0;//   padding: 0;//   background-color: #FAFAFA;//   font: 12pt "Tahoma";// }// * {//   box-sizing: border-box;//   -moz-box-sizing: border-box;// }// .page {//   width: 21cm;//   min-height: 29.7cm;//   padding: 2cm;//   margin: 1cm auto;//   border: 1px #D3D3D3 solid;//   border-radius: 5px;//   background: white;//   box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);// }// .subpage {//   padding: 1cm;//   border: 5px red solid;//   height: 256mm;//   outline: 2cm #FFEAEA solid;// }// @page {//   size: A4;//   margin: 0;// }// @media print {//   body,//   page[size="A4"] {//     margin: 0;//     box-shadow: 0;//   }// }
 |