/* -----------------------------------------------------------------------------------------
   $Id: stylesheet.css,v 1.2 2004/01/25 12:01:17 oldpa Exp $   

   TWE-Commerce - community made shopping
   http://www.oldpa.com.tw
   Copyright (c) 2003 TWE-Commerce 
   -----------------------------------------------------------------------------------------
   based on: 
   (c) 2000-2001 The Exchange Project  (earlier name of osCommerce)
   (c) 2002-2003 osCommerce(stylesheet.css,v 1.54 2003/05/27); www.oscommerce.com 
   (c) 2003	 nextcommerce (stylesheet.css,v 1.7 2003/08/13); www.nextcommerce.org   
   (c) 2003	 xt-commerce  www.xt-commerce.com
   Released under the GNU General Public License 
---------------------------------------------------------------------------------------*/


BODY,td,tr,text {
  font-family: Arial,Arial, Arial, Arial;
  font-size: 13.5px;
  margin: 0px;
  line-height: 1.5;
}

.w1,a.w1,td.w1,text.w1 {
  font-family: Arial,Arial, Arial, Arial;
  color: white;
  font-size: 13.5px;
  margin: 0px;
  line-height: 1.5;
}

/*連結樣式
A { color: #999966; text-decoration: none; } 
A:link { color:  #19637D;text-decoration: none; } 
A:visited { color:  #19637D; text-decoration:none; } 
A:active { color: #4A8BA3; text-decoration:none;  } 
A:hover { color: #4A8BA3; text-decoration:underline;  }

我只有改過A:hover的文字效果，讓游標移到連結的地方時出現底線。

現在來介紹一下每個語法的意思：
A{}→所有連結字體的設定
A:link{}→尚未連結過的字體設定
A:visited{}→已經按下過的連結字體設定
A:active{}→正在執行(按)中的連結字體設定
A:hover{}→當游標移到連結上時的字體設定

{}中color是字體的顏色，可以在這裡調個喜歡的顏色將字碼複製後貼上，text-decoration是文字效果，可以填的有none(無)、underline(底線)、overline(頂線)、line-through(穿越線)、blink(閃爍)，如果要底線也要頂線的話，就打underline overline，記得中間空一格。

*/

A {
  font-family: Arial,Simsun, Arial, Arial;
  color: #000000;
  text-decoration: none;
}

A:link { 
   font-family: Arial,Simsun, Arial, Arial;
  color: #000000;
   text-decoration: none; 
   }

A:hover {
  font-family: Arial,Simsun, Arial, Arial;
  color: #000000;
  text-decoration: none;
}

A:visited {
  font-family: Arial,Simsun, Arial, Arial;
  color: #000000;
  text-decoration: none;
}
