Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html lang="pl">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Linux</title>
  6. <style>
  7.  
  8. <link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400" rel="stylesheet">
  9.  
  10. h1, h2
  11. {
  12. color: white;
  13. }
  14.  
  15. .overlay
  16. {
  17. position: fixed;
  18. width: 100%;
  19. height: 100%;
  20. left: 0;
  21. top: 0;
  22. background: rgb(255,255,255);
  23. z-index: 10;
  24. }
  25.  
  26. #logo
  27. {
  28. width: 100%;
  29. height: 40px;
  30. color: rgb(255,255,255);
  31. float: left;
  32. box-shadow: 0px 1px 5px grey;
  33. }
  34.  
  35. .text
  36. {
  37. text-align: center;
  38. color: black;
  39. font-size: 20px;
  40. font-family: 'Roboto Condensed', sans-serif;
  41. font-weight: 300;
  42. }
  43.  
  44. </style>
  45. </head>
  46. <body>
  47. <div class="overlay">
  48. <div id="logo">
  49. <div class="text">Topologia sieci</div>
  50. </div>
  51. </div>
  52. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement