Advertisement
Guest User

tyyli

a guest
Oct 7th, 2015
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. @charset "utf-8";
  2.  
  3. body {
  4. padding:0px;
  5. margin:0px;
  6. font-family:Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
  7. background-color:#C3C4D7;
  8. text-align:left;
  9.  
  10. }
  11.  
  12. #page {
  13. /* keskitetään näytölle */
  14. width:960px;
  15. margin-left:auto;
  16. margin-right:auto;
  17. background-color:#9c9;
  18. }
  19.  
  20. #header{
  21. width:960px;
  22. height:80px;
  23. background-color:#0CC;
  24. }
  25.  
  26. #header_logo {
  27. width:310px;
  28. height:70px;
  29. background-color:#A85051;
  30. margin:5px;
  31. float:left;
  32. }
  33.  
  34.  
  35. #header_center {
  36. width:310px;
  37. height:70px;
  38. background-color:#8A1565;
  39. margin:5px;
  40. float:left;
  41. }
  42.  
  43.  
  44. #header_right {
  45. width:310px;
  46. height:70px;
  47. background-color:#7F3E52;
  48. margin:5px;
  49. float:left;
  50. }
  51.  
  52. #header p {
  53. color:white;
  54. margin:20px;
  55.  
  56. }
  57.  
  58. #menu, #footer {
  59. width:960px;
  60. height:30px;
  61. float:left;
  62. background-color:#D800FF;
  63. }
  64.  
  65.  
  66. #menu p, #footer p {
  67. margin:5px;
  68. padding:0px;
  69. color:white;
  70. text-align:center;
  71. }
  72.  
  73. #content {
  74. width:960px;
  75. background-color:#18FF24;
  76.  
  77. }
  78.  
  79. #content_left {
  80. margin:20px;
  81. padding:5px;
  82. width:400px;
  83. border:1px solid #EEE;
  84. float:left;
  85. border-radius:5px;
  86.  
  87.  
  88. }
  89.  
  90. #content_left img {
  91. float:left;
  92. margin:5px;
  93. box-shadow:2px 2px 2px #022B33;
  94. }
  95.  
  96. #content_left p, #content_right p {
  97. color:#EEE;
  98. font-size:12px;
  99. }
  100.  
  101. #content_right {
  102. margin:20px;
  103. padding:5px;
  104. width:400px;
  105. border:1px solid #EEE;
  106. float:right;
  107. border-radius:5px;
  108. }
  109.  
  110. #content_right img {
  111. float:right;
  112. margin:5px;
  113. box-shadow: -2px -2px -2px #022B33;
  114. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement