Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.29 KB | None | 0 0
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6.  
  7. body{
  8. background-color:crimson;
  9. }
  10.  
  11.  
  12. .ramka{
  13. width:1200px;
  14. min-height: 800px;
  15. margin-left: auto;
  16. margin-right: auto;
  17.  
  18. }
  19.  
  20. header{
  21. width:100%;
  22. height:400px;
  23. background-color:deepskyblue;
  24. border-radius:20px;
  25. margin-top:20px;
  26. padding-top: 100px;
  27. }
  28.  
  29. #logo{
  30. width:200px;
  31. height:200px;
  32. border:5px solid black;
  33. margin-left: auto;
  34. margin-right: auto;
  35. font-size: 50px;
  36. color: crimson;
  37. padding-top: 60px;
  38. padding-left: 50px;
  39. border-radius: 100px 5px 100px 5px;
  40. }
  41.  
  42.  
  43. }
  44.  
  45. nav{
  46. width:100%;
  47. height:80px;
  48. background-color:deepskyblue;
  49. border-radius:20px;
  50. margin-top:20px;
  51. text-align: center;
  52. }
  53. nav > a{
  54. color:crimson;
  55. width: 200px;
  56. height:80px;
  57. font-size: 30px;
  58. display:inline-block;
  59. text-decoration: none;
  60. padding: 20px;
  61. }
  62.  
  63. nav > a:hover{
  64. background-color: crimson;
  65. color:deepskyblue;
  66. border-top:2px dotted deepskyblue;
  67. border-bottom:2px dotted deepskyblue;
  68. border-left: 2px dotted deepskyblue;
  69. border-right: 2px dotted deepskyblue;
  70. border-radius: 20px;
  71. }
  72.  
  73. section{
  74. width:100%;
  75. height:800px;
  76. background-color:deepskyblue;
  77. border-radius:20px;
  78. margin-top:20px;
  79. }
  80.  
  81. footer{
  82. width:100%;
  83. height:100px;
  84. background-color:deepskyblue;
  85. border-radius:20px;
  86. margin-top:20px;
  87. margin-bottom: 20px;
  88. }
  89.  
  90. article{
  91. width: 100%;
  92. min-height: 100px;
  93. margin: 10px auto;
  94. padding: 10px;
  95. border: 2px dotted crimson;
  96. }
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104. *{
  105. margin: 0;
  106. padding: 0;
  107. box-sizing: border-box;
  108. }
  109.  
  110. body{
  111. background-color:crimson;
  112. }
  113.  
  114.  
  115. .ramka{
  116. width:1200px;
  117. min-height: 800px;
  118. margin-left: auto;
  119. margin-right: auto;
  120.  
  121. }
  122.  
  123. header{
  124. width:100%;
  125. height:400px;
  126. background-color:deepskyblue;
  127. border-radius:20px;
  128. margin-top:20px;
  129. padding-top: 100px;
  130. }
  131.  
  132. #logo{
  133. width:200px;
  134. height:200px;
  135. border:5px solid black;
  136. margin-left: auto;
  137. margin-right: auto;
  138. font-size: 50px;
  139. color: crimson;
  140. padding-top: 60px;
  141. padding-left: 50px;
  142. border-radius: 100px 5px 100px 5px;
  143. }
  144.  
  145.  
  146. }
  147.  
  148. nav{
  149. width:100%;
  150. height:80px;
  151. background-color:deepskyblue;
  152. border-radius:20px;
  153. margin-top:20px;
  154. text-align: center;
  155. }
  156. nav > a{
  157. color:crimson;
  158. width: 200px;
  159. height:80px;
  160. font-size: 30px;
  161. display:inline-block;
  162. text-decoration: none;
  163. padding: 20px;
  164. }
  165.  
  166. nav > a:hover{
  167. background-color: crimson;
  168. color:deepskyblue;
  169. border-top:2px dotted deepskyblue;
  170. border-bottom:2px dotted deepskyblue;
  171. border-left: 2px dotted deepskyblue;
  172. border-right: 2px dotted deepskyblue;
  173. border-radius: 20px;
  174. }
  175.  
  176. section{
  177. width:100%;
  178. height:800px;
  179. background-color:deepskyblue;
  180. border-radius:20px;
  181. margin-top:20px;
  182. }
  183.  
  184. footer{
  185. width:100%;
  186. height:100px;
  187. background-color:deepskyblue;
  188. border-radius:20px;
  189. margin-top:20px;
  190. margin-bottom: 20px;
  191. }
  192.  
  193. article{
  194. width: 100%;
  195. min-height: 100px;
  196. margin: 10px auto;
  197. padding: 10px;
  198. border: 2px dotted crimson;
  199. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement