Contact_CSS

This is the CSS specific to the Contact page.

    1| @charset "utf-8";
    2| 
    3| /*Contacts Table*/
    4| .red {
    5|     color:red;
    6|     }
    7| 
    8| .error {
    9|         background-color: #F80012;
  10|         font-size:1.25em; /* 16px*1.25em=20px */
  11|         font-weight: bolder;
  12|         margin: 0px auto 0px 30%;
  13|         padding: 2px;
  14|         width: 400px;
  15|         text-align:center;
  16|         border:10px ridge yellow;
  17|         }
  18| 
  19| 
  20| table,th,td{
  21|          margin: 0px auto 0px auto;
  22|          border:6px ridge #5DCFC3;
  23|         }
  24| 
  25| input:focus {
  26|             border:2px solid #FC3F4D;
  27|             }
  28| 
  29| textarea:focus {
  30|             border:2px solid #FC3F4D;
  31|             }
  32| 
  33| .js {
  34|         display:none;
  35|         visibility:hidden;
  36|      }
  37| 
  38| .njs{
  39|         display:inline;
  40|         visibility:visible;
  41|  }