Advertisement
Patrikrizek

lesson-6-stylesheet

Jun 15th, 2022
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.74 KB | None | 0 0
  1. /* Styles CSS - Homework 3 */
  2. h1 {
  3.     font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  4.     line-height: 0.3em;
  5.     font-size: 1.5em;
  6.     color:#fff;
  7. }
  8.  
  9. p {
  10.     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  11.     font-size: 1em;
  12.     line-height: 1.3em;
  13.     color:#fff;
  14. }
  15.  
  16. img {
  17.     height: 100px;
  18. }
  19.  
  20. button {
  21.     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  22.     background-color: transparent;
  23.     color: #fff;
  24.     border-style: solid;
  25.     border-color: #fff;
  26.     border-radius: 10px;
  27.     padding: 6px 24px 6px 24px;
  28.     margin-bottom: 10px;
  29. }
  30.  
  31. button:hover {
  32.     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  33.     background-color: #fff;
  34.     color: #000;
  35.     border-style: solid;
  36.     border-color: #fff;
  37.     border-radius: 10px;
  38.     padding: 6px 24px 6px 24px;
  39.     margin-bottom: 10px;
  40.     cursor: pointer;
  41. }
  42.  
  43. #wrapper {
  44.     background: linear-gradient(90deg, #c2c2c2, #777777, #777777, #c2c2c2) no-repeat center center fixed;
  45.     -webkit-background-size: cover;
  46.     -moz-background-size: cover;
  47.     -o-background-size: cover;
  48.     background-size: cover;
  49.     padding: 10px;
  50. }
  51.  
  52. #banner {
  53.     display:flex;
  54.     justify-content: center;
  55.     align-items: center;
  56.     cursor: pointer;
  57.     margin: 10px;
  58.     padding: 10px;
  59.     border-radius: 20px;
  60.     height: 120px;
  61.     background: linear-gradient(-45deg, #e79e00, #ff0000, #ffe96c, #ff0000);
  62.     animation: gradient 15s ease infinite;
  63.     background-size: 200% 200%;
  64. }
  65.  
  66. @keyframes gradient {
  67.     0% {
  68.         background-position: 0% 50%;
  69.     }
  70.  
  71.     50% {
  72.         background-position: 100% 50%;
  73.     }
  74.    
  75.     100% {
  76.         background-position: 0% 50%;
  77.     }
  78. }
  79.  
  80. #logo {
  81.     padding-right: 10px;
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement