Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>some Html template</title>
  6. <link type="text/css" rel="stylesheet" href="css/app.css">
  7. </head>
  8. <body>
  9. <header></header>
  10. <main>
  11. <h1>Content</h1>
  12. </main>
  13. <footer></footer>
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20. <div id="overlay" style="display: block;">
  21. <div>
  22. Для продолжения нажмите кнопку<br>
  23. <button>Далее</button>
  24. </div>
  25. </div>
  26. </body>
  27. </html>
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35. html, body {
  36. margin: 0;
  37. padding: 0;
  38. font-size: 15px;
  39. font-family: "American Typewriter";
  40. background: aliceblue;
  41. }
  42. div {
  43. box-sizing: border-box;
  44. }
  45.  
  46. header {
  47. height: 80px;
  48. background: red;
  49. }
  50.  
  51. main {
  52. height: 500px;
  53. background: yellow;
  54. }
  55.  
  56. footer {
  57. height: 50px;
  58. background: black;
  59. }
  60.  
  61. h1 {
  62. margin: 0;
  63. }
  64.  
  65.  
  66. #overlay {
  67. position: fixed;
  68. left: 0;
  69. right: 0;
  70. bottom: 0;
  71. top: 0;
  72. background: rgba(0,0,0,0.4 );
  73. }
  74. #overlay div {
  75. margin: 20% auto;
  76. width: 30%;
  77. padding: 30px;
  78. text-align: center;
  79. background: white;
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement