@charset "utf-8";
.button { /*按鈕變化*/
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
}
.button:active {
  background-color: #000000;
  box-shadow: 0 30px #666;
  transform: translateY(30px);

}

.button1 {
    background-color: white; 
    color: black; 
	font-size: 20px;
    border: 2px solid #4CAF50;
}
.button1:hover {
    background-color: #4CAF50;
	font-size: 24px;
    color: white;
}

.button2 {
    background-color: white; 
    color: black; 
	font-size: 28px;
    border: 8px solid #9999FF;
}
.button2:hover {
    background-color: #9999FF;
	font-size: 32px;
    color: white;
}


/* body { /*底圖顏色*/
/*	background-color: #111;
}
*/

h1 {
	text-shadow: 0 1px 0 #ccc,
               0 2px 0 #c9c9c9,
               0 3px 0 #bbb,
               0 4px 0 #b9b9b9,
               0 5px 0 #aaa,
               0 6px 1px rgba(0,0,0,.1),
               0 0 5px rgba(0,0,0,.1),
               0 1px 3px rgba(0,0,0,.3),
               0 3px 5px rgba(0,0,0,.2),
               0 5px 10px rgba(0,0,0,.25),
               0 10px 10px rgba(0,0,0,.2),
               0 20px 20px rgba(0,0,0,.15);
	font-size: 22px;
	text-align: center;
}

h2 {
	text-shadow: 0 1px 0 #ccc,
               0 2px 0 #c9c9c9,
               0 3px 0 #bbb,
               0 4px 0 #b9b9b9,
               0 5px 0 #aaa,
               0 6px 1px rgba(0,0,0,.1),
               0 0 5px rgba(0,0,0,.1),
               0 1px 3px rgba(0,0,0,.3),
               0 3px 5px rgba(0,0,0,.2),
               0 5px 10px rgba(F,F,0,.25),
               0 10px 10px rgba(0,0,0,.2),
                20px 20px rgba(0,0,0,.15);
	font-size: 32px;
	text-align: center;
	
}
h3 {
	font-size: 22px;
}



input[type=text] {
  width: 100%;
  padding: 2px 2px;
  margin: 2px 0;
  box-sizing: border-box;
  border: 1px solid #555;
  outline: none;
  font-size:22px;
  text-align:center
}

input[type=text]:focus {
  background-color: lightblue;
}
@media screen and (max-width:768px) { 
body {{ /*螢幕制定字型大小 768*/
        
        background:red;
      }
      h1{
	      font-size:90px;
      }
}

@media screen and (max-width:480px) { 
body {/*螢幕制定字型大480*/
        
        background:yellow;
      }
      h1{
	      font-size:px;
      }
}

/*分隔線*/
hr.style-seven{
    height: 30px;
    border-style: solid;
    border-color: black;
    border-width: 1px 0 0 0;
    border-radius: 20px;
}
hr.style-seven:before{ 
    display: block;
    content: "";
    height: 30px;
    margin-top: -31px;
    border-style: solid;
    border-color: black;
    border-width: 0 0 1px 0;
    border-radius: 20px;
}




  /* HTML 範例 <label class="container">使用<input type="checkbox" name="ONOFF" id="ONOFF" <?php if($RS485_ONOFF[$V]=='1'){echo "checked";}?>><span class="checkmark"></span></label>*/
