video_browser.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. body {
  2. background-color: white;
  3. color: black;
  4. font-family: Arial, sans-serif;
  5. font-size: small;
  6. margin: 8px;
  7. margin-top: 3px;
  8. }
  9. img {
  10. border: 0;
  11. }
  12. table {
  13. border-collapse: collapse;
  14. }
  15. th, td {
  16. padding: 0;
  17. vertical-align: top;
  18. text-align: left;
  19. }
  20. a:link {
  21. color: #0000cc;
  22. }
  23. a:active {
  24. color: #cc0000;
  25. }
  26. a:visited {
  27. color: #551a8b;
  28. }
  29. h1 {
  30. font-size: x-large;
  31. margin-top: 0px;
  32. margin-bottom: 5px;
  33. }
  34. h2 {
  35. font-size: large;
  36. }
  37. h3 {
  38. font-size: medium;
  39. }
  40. h4 {
  41. font-size: small;
  42. }
  43. form {
  44. display: inline;
  45. margin: 0;
  46. padding: 0;
  47. }
  48. li {
  49. margin-bottom: 0.25em;
  50. }
  51. pre, code {
  52. color: #007000;
  53. font-family: "bogus font here", monospace;
  54. font-size: 100%;
  55. }
  56. pre {
  57. border: 1px solid silver;
  58. background-color: #f5f5f5;
  59. padding: 0.5em;
  60. overflow: auto;
  61. margin: 2em;
  62. }
  63. pre ins {
  64. color: #cc0000;
  65. font-weight: bold;
  66. text-decoration: none;
  67. }
  68. /* "Selected" links */
  69. a.selected, .selected a, .selected {
  70. color: black;
  71. font-weight: bold;
  72. text-decoration: none;
  73. }
  74. a.selected:visited, .selected a:visited {
  75. color: black;
  76. }
  77. p.videoDescription {
  78. font-size: small;
  79. margin: 0;
  80. padding: 0;
  81. }
  82. .videoList td {
  83. padding-bottom: 5px;
  84. padding-right: 5px;
  85. }
  86. #titleBar {
  87. border: 1px solid silver;
  88. background-color: #e5ecf9;
  89. font-size: large;
  90. font-weight: bold;
  91. margin: 0;
  92. padding: 0;
  93. padding-top: 5px;
  94. padding-bottom: 10px;
  95. padding-left: 10px;
  96. padding-right: 10px;
  97. margin-top: 5px;
  98. margin-bottom: 15px;
  99. }
  100. #titleText {
  101. float: left;
  102. }
  103. #searchBox {
  104. float: right;
  105. }
  106. #mainSearchBox {
  107. background-color: #e5ecf9;
  108. border: 1px solid silver;
  109. width: 250;
  110. padding-top: 5px;
  111. padding-bottom: 5px;
  112. padding-left: 10px;
  113. padding-right: 10px;
  114. }
  115. #searchResults {
  116. width: 100%;
  117. }
  118. #searchResultsListColumn {
  119. float: left;
  120. width: 47%;
  121. }
  122. #searchResultsVideoColumn {
  123. float: right;
  124. width: 47%;
  125. }