Advertisement
homerman5098

klassenspiegel_style.css

Feb 5th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.40 KB | None | 0 0
  1. /* Allgemein */
  2.  
  3. * {
  4.     margin: 0;
  5.     padding: 0;
  6.     font-family: Arial,  sans-serif;
  7.     z-index: 0;
  8. }
  9.  
  10. .Wrapper {
  11.     width: 960px;
  12.     max-width: 90%;
  13.     margin: 0 auto;
  14. }
  15.  
  16. /* Navigationsleiste */
  17.  
  18. #Navigation {
  19.     background-color: rgba(250, 250, 250, 0.8);
  20.     width: 100%;
  21.     height: 90px;
  22.     z-index: 10;
  23.     position: fixed;
  24.     top: 0px;
  25. }
  26.  
  27. #logo {
  28.     width: 60px;
  29.     height: 60px;
  30.     margin: 20px;
  31.     float: left;
  32. }
  33.  
  34. #menu {
  35.     float: right;
  36.     margin-top: 40px;
  37. }
  38.  
  39. #menu a {
  40.     transition: ease-in-out 150ms;
  41.     color: black;
  42.     font-size: 15px;
  43.     padding-right: 25px;
  44.     text-decoration: none;
  45.     color: black;
  46.     font-weight: 800;
  47.     z-index: 0;
  48.     padding-top: 30px;
  49.     padding-bottom: 20px;
  50. }
  51.  
  52. #menu a:hover {
  53.     color: #ceaf09;
  54. }
  55.  
  56. /* Bild */
  57.  
  58. .Bild {
  59.     width: 960px;
  60.     height: 655px;
  61.     z-index: 0;
  62.     background: url(https://www.vonwilmowsky.com/images/product_images/original_images/742_0.jpg);
  63.     background-size: cover;
  64.     margin-top: 37px
  65. }
  66.  
  67. /* Skalierung muss gefixt werden */
  68.  
  69. .Bild h1 {
  70.     text-align: center;
  71.     padding-top: 318px;
  72.     font-family: courier;
  73.     font-size: 65px;
  74.     font-weight: 700;
  75.     color: rgba(0, 0, 0, 0.6);
  76. }
  77.  
  78. .text {
  79.     padding-left: 80px;
  80. }
  81.  
  82. /* FuรŸzeile */
  83.  
  84. .FuรŸzeile {
  85.     text-align: center;
  86.     margin-top: 100px;
  87.     position: sticky;
  88.     bottom: 0px;
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement