Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. body {
  2. background-color: #eee;
  3. font-family: 'Open Sans', sans-serif;
  4. padding: 0;
  5. margin: 0;
  6. }
  7. img {
  8. width: 100%;
  9. background: #ddd;
  10. padding: 20px 0;
  11. }
  12. .logo{
  13. width: 120px;
  14. float: left;
  15. padding: 0;
  16. }
  17. .wrap {
  18. position: relative;
  19. margin: 0 auto;
  20. width: 90%;
  21. max-width: 1600px;
  22. min-width: 480px;
  23. }
  24. .content {
  25. background: Azure;
  26. position: absolute;
  27. top: 120px;
  28. padding: 20px;
  29. min-width: 220px;
  30. }
  31. .header {
  32. position: fixed;
  33. z-index: 999;
  34. top: 0;
  35. width: 92%;
  36. max-width: 1600px;
  37. min-width: 340px;
  38. background: LightSeaGreen;
  39. padding: 0;
  40. }
  41. a {
  42. text-decoration: none;
  43. color: crimson;
  44. }
  45. a:visited{
  46. color:darkorchid;
  47. }
  48. ul{
  49. list-style-type: none;
  50. margin: 0;
  51. padding: 0;
  52. position: absolute;
  53. left: 120px;
  54. right: 0;
  55. bottom: 0;
  56. background: #ff9900;
  57. min-width: 220px;
  58. }
  59. li > a {
  60. display: block;
  61. float:left;
  62. color: #fff;
  63. padding: 10px 20px;
  64. text-transform: uppercase;
  65. }
  66. li > a:visited{
  67. color: #ccc;
  68. }
  69. li > a:hover {
  70. color: #fff;
  71. }
  72. .menu. {
  73. float: left;
  74. width: 31.33%;
  75. margin: 1% 5% 5% 5%;
  76. background: pink;
  77. }
  78. .column {
  79. float: left;
  80. width: 31.33%;
  81. margin: 1%;
  82. background: Pink;
  83. }
  84. .column2{
  85. display: inline-block;
  86. width: 200px;
  87. margin: 1%;
  88. background: Red;
  89. }
  90. @media (max-width: 768px){
  91. .column {
  92. width: 48%;
  93. }
  94. }
  95. @media (max-width: 480px){
  96. .column {
  97. width: 100%;
  98. }
  99. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement