Advertisement
FlyFar

style.css

Mar 29th, 2023
536
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.96 KB | Cybersecurity | 0 0
  1. @import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");
  2.  
  3. body {
  4.   font-family: "Open Sans", sans-serif;
  5. }
  6.  
  7. .app {
  8.   position: absolute;
  9.   top: 0;
  10.   left: 0;
  11.   right: 0;
  12.   display: flex;
  13.   align-items: center;
  14.  
  15.   padding-top: 12px;
  16.  
  17.   background-color: antiquewhite;
  18.   flex-direction: column;
  19. }
  20.  
  21. .app h1 {
  22.   margin: 48px;
  23.   font-weight: 600;
  24. }
  25.  
  26. button {
  27.   margin: 18px;
  28.   padding: 12px;
  29.   text-transform: uppercase;
  30.   border-radius: 8px;
  31.   color: white;
  32.   background-color: rgb(0, 132, 255);
  33.   border: none;
  34. }
  35.  
  36. a {
  37.   margin-top: 20px;
  38. }
  39.  
  40. .article {
  41.   max-width: 740px;
  42.   padding: 64px;
  43.   margin: auto;
  44.   line-height: 32px;
  45. }
  46.  
  47. .article h1 {
  48.   font-size: 42px;
  49.   padding-bottom: 12px;
  50.   font-weight: 600;
  51. }
  52.  
  53. .article p {
  54.   color: #6b3434;
  55.   margin-top: 2em;
  56.   font-size: 16px;
  57. }
  58.  
  59. .article iframe {
  60.   margin-top: 24px;
  61.   width: 100%;
  62.   height: 125px;
  63.   border: none;
  64.   border-radius: 4px;
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement