Advertisement
Guest User

Untitled

a guest
Jul 30th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.43 KB | None | 0 0
  1. body {
  2.     min-width: 500px;
  3.     margin: 0;
  4.     padding: 0;
  5.     font-family: "PT Sans", sans-serif;
  6.     font-size: 14px;
  7. }
  8.  
  9. .clearfix::after {
  10.     display: table;
  11.     content: "";
  12.     clear: both;
  13. }
  14.  
  15. .layout-positioner {
  16.     width: 430px;
  17.     margin: 0 auto;
  18. }
  19.  
  20. .layout-positioner::after {
  21.     display: table;
  22.     content: "";
  23.     clear: both;
  24. }
  25.  
  26. .header {
  27.     margin-bottom: 10px;
  28.     color: white;
  29.     background: #34495e;
  30. }
  31.  
  32. .header .layout-column {
  33.     min-height: 50px;
  34. }
  35.  
  36. .header .layout-column-1 {
  37.     float: left;
  38.     width: 280px;
  39. }
  40.  
  41. .header .layout-column-2 {
  42.     float: right;
  43.     width: 130px;
  44. }
  45.  
  46. .features {
  47.     margin-bottom: 10px;
  48. }
  49.  
  50. .features .layout-column {
  51.     float: left;
  52.     margin-right: 20px;
  53.     width: 130px;
  54.     min-height: 100px;
  55.     background: rgba(236, 240, 241, 0.9);
  56. }
  57.  
  58. .features .layout-column:last-child {
  59.     margin-right: 0;
  60. }
  61.  
  62. .footer {
  63.     min-height: 50px;
  64.     color: white;
  65.     background: #34495e;
  66. }
  67.  
  68. /* Стили содержания */
  69. .hidden {
  70.     display: block;
  71. }
  72.  
  73. .logo {
  74.     padding: 10px;
  75. }
  76.  
  77. .logo p {
  78.     margin: 0;
  79. }
  80.  
  81. .menu {
  82.     margin: 0;
  83.     padding: 10px;
  84.     list-style: none;
  85. }
  86.  
  87. .menu li {
  88.     margin-bottom: 5px;
  89.     padding: 5px;
  90.     text-align: center;
  91.     background: #2c3e50;
  92.     border-radius: 5px;
  93. }
  94.  
  95. .feature {
  96.     padding: 10px;
  97.     text-align: center;
  98. }
  99.  
  100. .footer-logo {
  101.     padding: 10px;
  102. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement