home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / phoenx05.zip / phoenix / res / samples / demoform.css < prev    next >
Cascading Style Sheet File  |  2002-12-10  |  2KB  |  98 lines

  1.  
  2. input[type="checkbox"] {
  3.  width:22px; 
  4.  height:22px; 
  5.  color:yellow;
  6.  border:4px outset green;
  7.  background-color:green;
  8. }
  9.  
  10. input[type="radio"] {
  11.  width:17px; 
  12.  height:17px; 
  13.  border:3px inset;
  14.  background-color:green;
  15.  color:yellow;
  16.  -moz-border-radius:0;
  17. }
  18.  
  19. :-moz-radio {
  20.  width:8px;
  21.  width:8px;
  22.  background-color:yellow;
  23.  color:yellow;
  24.  -moz-border-radius:0;
  25. }
  26.  
  27. input[type=button] {
  28.  border:4px outset green;
  29.  -moz-border-radius:8px;
  30.  color:black;
  31.  background-color:green;
  32.  padding-left:10px;
  33.  padding-right:10px;
  34.  font-weight:bold;
  35. }
  36.  
  37. input[type=button]:active {
  38.  border:4px inset green;
  39.  padding-left:12px;
  40.  padding-top:2px;
  41.  padding-right:8px;
  42. }
  43.  
  44. select {
  45.   -moz-border-radius:0px;
  46.   border:4px inset green;
  47.   background-color:#0000cc;
  48. }
  49.  
  50. :-moz-dropdown-list {
  51.   background-color:#0000cc;
  52.   border:4px inset green;
  53. }
  54.  
  55. option {
  56.  padding-right:10px;
  57.  padding-left:10px;
  58.  font-weight:bold;
  59.  background-color:green;
  60. }
  61.  
  62. option:checked {
  63.   color:red;
  64.   background-color:yellow;
  65. }
  66.  
  67. :-moz-dropdown-btn-out {
  68.   background-color:green;
  69.   border: 2px outset green;
  70. }
  71.  
  72. :-moz-dropdown-btn-pressed {
  73.   background-color:green;
  74.   border: 2px inset green;
  75.   color:yellow;
  76. }
  77.  
  78. :combobox-textselected {
  79.   background-color:green;
  80.   color:yellow;
  81. }
  82.  
  83. :combobox-text {
  84.   background-color:green;
  85.   color:yellow;
  86. }
  87.  
  88. optgroup { 
  89.  background-color:#0000cc;
  90.  color:white;
  91. }
  92.  
  93. optgroup > option {
  94.   background-color:green;
  95.   color:black;
  96. }
  97.   
  98.