kodithegreat

sogood

Jan 30th, 2022
1,287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.97 KB | None | 0 0
  1. body {
  2.     margin: 0;
  3.     font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  4.     -webkit-font-smoothing: antialiased;
  5.     -moz-osx-font-smoothing: grayscale
  6. }
  7.  
  8. code {
  9.     font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace
  10. }
  11.  
  12. .App {
  13.     text-align: center
  14. }
  15.  
  16. .App-logo {
  17.     height: 40vmin;
  18.     pointer-events: none
  19. }
  20.  
  21. @media (prefers-reduced-motion:no-preference) {
  22.     .App-logo {
  23.         -webkit-animation: App-logo-spin 20s linear infinite;
  24.         animation: App-logo-spin 20s linear infinite
  25.     }
  26. }
  27.  
  28. .App-header {
  29.     background-color: #282c34;
  30.     width: 100vw;
  31.     background-position: 50%;
  32.     background-size: cover;
  33.     min-height: 100vh;
  34.     display: flex;
  35.     flex-direction: column;
  36.     align-items: center;
  37.     justify-content: center;
  38.     font-size: 1.1em;
  39.     font-weight: 700;
  40.     line-height: 1.8em;
  41.     color: #fff;
  42.     overflow-x: hidden
  43. }
  44.  
  45. .opacity {
  46.     opacity: .9
  47. }
  48.  
  49. .App-link,
  50. .btn-main,
  51. .pink-text {
  52.     color: #cc42e1
  53. }
  54.  
  55. .btn-main {
  56.     width: 70%;
  57.     border: 2px solid #cc42e1;
  58.     background: transparent;
  59.     font-size: 1.1em;
  60.     font-weight: 700;
  61.     line-height: 1.8em;
  62.     margin: auto
  63. }
  64.  
  65. .btn-main:hover {
  66.     color: #fff;
  67.     background: #cc42e1
  68. }
  69.  
  70. .small-text {
  71.     font-size: .8em;
  72.     line-height: 1.4em;
  73.     font-weight: 400
  74. }
  75.  
  76. @media (min-width:576px) {
  77.     .small-text {
  78.         font-size: .9em
  79.     }
  80. }
  81.  
  82. @-webkit-keyframes App-logo-spin {
  83.     0% {
  84.         -webkit-transform: rotate(0deg);
  85.         transform: rotate(0deg)
  86.     }
  87.  
  88.     to {
  89.         -webkit-transform: rotate(1turn);
  90.         transform: rotate(1turn)
  91.     }
  92. }
  93.  
  94. @keyframes App-logo-spin {
  95.     0% {
  96.         -webkit-transform: rotate(0deg);
  97.         transform: rotate(0deg)
  98.     }
  99.  
  100.     to {
  101.         -webkit-transform: rotate(1turn);
  102.         transform: rotate(1turn)
  103.     }
  104. }
Advertisement
Add Comment
Please, Sign In to add comment