asp.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * CodePress color styles for ASP-VB syntax highlighting
  3. * By Martin D. Kirk
  4. */
  5. /* tags */
  6. b {
  7. color:#000080;
  8. }
  9. /* comments */
  10. big, big b, big em, big ins, big s, strong i, strong i b, strong i s, strong i u, strong i a, strong i a u, strong i s u {
  11. color:gray;
  12. font-weight:normal;
  13. }
  14. /* ASP comments */
  15. strong dfn, strong dfn a,strong dfn var, strong dfn a u, strong dfn u{
  16. color:gray;
  17. font-weight:normal;
  18. }
  19. /* attributes */
  20. s, s b, span s u, span s cite, strong span s {
  21. color:#5656fa ;
  22. font-weight:normal;
  23. }
  24. /* strings */
  25. strong s,strong s b, strong s u, strong s cite {
  26. color:#009900;
  27. font-weight:normal;
  28. }
  29. strong ins{
  30. color:#000000;
  31. font-weight:bold;
  32. }
  33. /* Syntax */
  34. strong a, strong a u {
  35. color:#0000FF;
  36. font-weight:;
  37. }
  38. /* Native Keywords */
  39. strong u {
  40. color:#990099;
  41. font-weight:bold;
  42. }
  43. /* Numbers */
  44. strong var{
  45. color:#FF0000;
  46. }
  47. /* ASP Language */
  48. span{
  49. color:#990000;
  50. font-weight:bold;
  51. }
  52. strong i,strong a i, strong u i {
  53. color:#009999;
  54. }
  55. /* style */
  56. em {
  57. color:#800080;
  58. font-style:normal;
  59. }
  60. /* script */
  61. ins {
  62. color:#800000;
  63. font-weight:bold;
  64. }
  65. /* <?php and ?> */
  66. cite, s cite {
  67. color:red;
  68. font-weight:bold;
  69. }