Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <title>Some text</title>
  6. <meta charset="utf-8">
  7. <link type="text/css" rel="stylesheet" href="css/main.css">
  8. </head>
  9.  
  10. <body>
  11. <div class="main-block">
  12. <div class="main">
  13. <div class="item">
  14. <input type="checkbox" id="male" checked disabled><label for="male">Male</label>
  15.  
  16. <br>
  17. <select id="country" disabled>
  18. <option value="">Выберите страну</option>
  19. <option value="US">USA</option>
  20. <option value="DE">Germany</option>
  21. <option value="UA">Ukraine</option>
  22. <option value="FR">France</option>
  23. </select>
  24.  
  25. <br>
  26. <a href="https://google.com" target="_blank">Google</a>
  27. <a href="https://gmail.com" target="_blank">MAIL</a>
  28. <input type="text" placeholder="Укажите свой email" disabled>
  29. </div>
  30. <div class="item"></div>
  31. <div class="item"></div>
  32. <div class="item"></div>
  33. <div class="item"></div>
  34. <div class="item"></div>
  35. <div class="item"></div>
  36. <div class="item"></div>
  37. <div class="item"></div>
  38. </div>
  39. </div>
  40. </body>
  41. </html>
  42.  
  43.  
  44.  
  45. html, body {
  46. padding: 0;
  47. min-height: 100%;
  48. font-size: 14px;
  49. width: 100%;
  50. background-color: white;
  51. margin: 0;
  52. }
  53. p {
  54. margin: 3px;
  55. }
  56. div {
  57. box-sizing: border-box;
  58. }
  59. .main-block {
  60. width: 90%;
  61. margin: 1% 5%;
  62. background: gray;
  63. padding-top: 1%;
  64. }
  65. .main {
  66. width: 90%;
  67. margin: 1% 5%;
  68. background: #cbdba6;
  69. padding-top: 1%;
  70. text-align: center;
  71. }
  72.  
  73. .item {
  74. width: 10%;
  75. height: 150px;
  76. border: 1px solid white;
  77. background: red;
  78. display: inline-block;
  79. float: left;
  80. }
  81.  
  82. .main::after {
  83. content: " ";
  84. clear: both;
  85. display: block;
  86. }
  87.  
  88. input::placeholder {
  89. color: blue;
  90. }
  91.  
  92.  
  93.  
  94. a:active {
  95. color: green;
  96. }
  97. a:visited {
  98. color: white;
  99. }
  100.  
  101. a:hover {
  102. color: cornflowerblue;
  103. border: 1px solid cornflowerblue;
  104. }
  105.  
  106. @media screen and (max-width: 1000px) {
  107. .main-block, .main {
  108. margin: 1% auto;
  109. width: 95%;
  110. }
  111. .item {
  112. width: 32%;
  113. }
  114. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement