Advertisement
Florian-Binder

stylesheet

Jul 8th, 2021
1,150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.21 KB | None | 0 0
  1. h1 {
  2.   #height: 8%;
  3.   #width: 13%;
  4.   font-size:35pt;
  5.   color: #000000;
  6.   font-family:arial;
  7.   margin-bottom: 2%;
  8.   margin-top: 2%;
  9.   text-align: center;
  10. }
  11.  
  12. body {
  13.   #background-image: url(leaps2.jpg) ;
  14.   background-color: #069686;
  15.   color: #000000;
  16.   font-size:20pt;
  17.   font-family:arial;
  18.   margin-right: 5%;
  19.   margin-left: 5%;
  20. }
  21. .input[type=submit] {
  22.   background-color: #f4511e;
  23.   border: none;
  24.   border-radius: 4px;
  25.   color: #FFFFFF;
  26.   padding: 5px;
  27.   text-align: center;
  28.   width: 150px;
  29.   font-size: 16px;
  30.   margin: 5px;
  31.   opacity: 0.8;
  32.   transition: 0.3s;
  33.   display: inline-block;
  34.   text-decoration: none;
  35.   cursor: pointer;
  36.      
  37. }
  38. .input:hover {
  39.     opacity: 1;
  40. }
  41.  
  42. select {
  43.   #color: #000000;
  44.   #width: 100%;
  45.   #height: 90%;
  46.   #padding: 16px 20px;
  47.   #border: solid;
  48.   border-radius: 4px;
  49.   #background-color: #0F59A6;
  50.   #font-size:14pt;
  51.   #font-family:arial;
  52.   #margin-right: 0%;
  53.   #margin-left: 0%;
  54. }
  55.  
  56.  
  57. .button_auf {
  58.   display: inline-block;
  59.   border-radius: 4px;
  60.   background-color: #f4511e;
  61.   border: none;
  62.   color: #FFFFFF;
  63.   text-align: center;
  64.   font-size: 15px;
  65.   padding: 10px;
  66.   width: 230px;
  67.   transition: all 0.5s;
  68.   cursor: pointer;
  69.   margin: 5px;
  70. }
  71.  
  72. .button_auf span {
  73.   cursor: pointer;
  74.   display: inline-block;
  75.   position: relative;
  76.   transition: 0.5s;
  77. }
  78.  
  79. .button_auf span:after {
  80.   content: '\00bb';
  81.   position: absolute;
  82.   opacity: 0;
  83.   top: 0;
  84.   right: -15px;
  85.   transition: 0.5s;
  86. }
  87.  
  88. .button_auf:hover span {
  89.   padding-right: 35px;
  90. }
  91.  
  92. .button_auf:hover span:after {
  93.   opacity: 1;
  94.   right: 0;
  95. }
  96.  
  97. .button_rueck {
  98.   display: inline-block;
  99.   border-radius: 4px;
  100.   background-color: #f4511e;
  101.   border: none;
  102.   color: #FFFFFF;
  103.   text-align: center;
  104.   font-size: 15px;
  105.   padding: 10px;
  106.   width: 230px;
  107.   transition: all 0.5s;
  108.   cursor: pointer;
  109.   margin: 5px;
  110. }
  111.  
  112. .button_rueck span {
  113.   cursor: pointer;
  114.   display: inline-block;
  115.   position: relative;
  116.   transition: 0.5s;
  117. }
  118.  
  119. .button_rueck span:after {
  120.   content: '\00AB';
  121.   position: absolute;
  122.   opacity: 0;
  123.   top: 0;
  124.   left: -15px;
  125.   transition: 0.5s;
  126. }
  127.  
  128. .button_rueck:hover span {
  129.   padding-left: 35px;
  130. }
  131.  
  132. .button_rueck:hover span:after {
  133.   opacity: 1;
  134.   left: 0;
  135. }
  136.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement