Advertisement
Guest User

style.css

a guest
Oct 19th, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.38 KB | None | 0 0
  1. .title
  2. {
  3.     padding: 5px;
  4.     border: 2px solid midnightblue;
  5.     text-align:center;
  6.     color:white;
  7.     font-family:"Century Gothic";
  8.     font-size:70px;
  9. }
  10.  
  11. .main
  12. {
  13.     background-color: #0A1A30;
  14. }
  15.  
  16. .fluids
  17. {
  18.     background:url(https://cdn.discordapp.com/attachments/477230882525151233/608830659661660190/unknown.png) repeat;
  19. }
  20.  
  21. .unit-cover
  22. {
  23.     color:white;
  24.     font-family:"Century Gothic";
  25.     text-align:center;
  26.     padding: 10px;
  27.     background: linear-gradient(#1C4C89,#163C6B);
  28. }
  29.  
  30. .unit
  31. {
  32.   border: none;
  33.   background-color: #457DC1;
  34.   padding: 10px 20px;
  35.   font-size: 18px;
  36.   cursor: pointer;
  37.   display: inline-block;
  38.   font-family:"Century Gothic", sans-serif;
  39.   color:white;
  40. }
  41.  
  42. .header
  43. {
  44.     color: #0B1623;
  45.     font-family:"Century Gothic", sans-serif;
  46.     font-size: 28px;
  47.     text-align:center;
  48.     padding: 15px;
  49.     background: linear-gradient(to right, #DEE6EF,#ffffff);
  50. }
  51.  
  52. .unit:hover
  53. {
  54.     background-color:#1C4C89;
  55.     transition:background .5s;
  56.     font-size: 20px;
  57. }
  58.  
  59. .inverted {
  60.     filter: invert(100%);
  61. }
  62.  
  63. .inverted:hover
  64. {
  65.     -webkit-animation:spin 4s linear infinite;
  66.     -moz-animation:spin 4s linear infinite;
  67.     animation:spin 4s linear infinite;
  68. }
  69. @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
  70. @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
  71. @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement