
/*
   this will apply this family to all elements in the document
   except the elements with the class "fa"
   which refers to fontawesome default class
*/
*:not(.fa) {
   font-family: 微軟正黑體, 新細明體, sans-serif;
 }

 button { cursor: pointer; } /* Pointer/hand icon */

a.btn.disabled, fieldset[disabled] a.btn {
   pointer-events: auto;
   cursor: not-allowed;
}

 button:disabled,
 button[disabled] {
   background-color: LightGray;
   color: DimGrey;
 }
 button:disabled,
 button[disabled] {
    cursor: not-allowed;
}
