Advertisement
Guest User

main css

a guest
May 22nd, 2013
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.96 KB | None | 0 0
  1. @media only screen and (max-width: 2000px) {
  2.     body {
  3.       background:url('extralarge.jpg');
  4.       background-repeat:no-repeat;
  5.       height:100%;
  6.       width:100%;
  7.   }
  8. }
  9.  
  10.  
  11. @media only screen and (max-width: 650px) {
  12.     body {
  13.       background:url('med2.jpg');
  14.       background-repeat:no-repeat;
  15.       height:100%;
  16.       float:center;
  17.   }
  18. }
  19.  
  20.  
  21.  
  22. @media only screen and (min-width: 58.75em){
  23. .top-bar {
  24. background: black;
  25. }
  26. }
  27.  
  28. input[type="text"] {
  29. width: auto;
  30. }
  31.  
  32. .panel {
  33. background-color: white;
  34. opacity:0.8;
  35.   filter:alpha(opacity=80); /* For IE8 and earlier */
  36.   width:100%;
  37. }
  38.  
  39. .panel2 {
  40. border-style: solid;
  41. border-width: 1px;
  42. border-color: #d9d9d9;
  43. margin-bottom: 1.25em;
  44. padding: 1.25em;
  45. background: #f2f2f2;
  46. }
  47.  
  48. h2, h3, h4, p, ul, li {
  49. color:white;
  50. }
  51.  
  52. a {
  53. color:lime;
  54. }
  55.  
  56. * {
  57. margin: 0;
  58. }
  59.  
  60. table {
  61. background-color: white;
  62. width: 100%;
  63. }
  64.  
  65. audio{
  66. width: 100%;
  67.  
  68. }
  69.  
  70. * {
  71. margin: 0;
  72. }
  73. html, body {
  74. height: 100%;
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement