Advertisement
Guest User

Demo3 - css

a guest
Nov 20th, 2023
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.59 KB | None | 0 0
  1. * {
  2.     padding: 0px;
  3.     margin: 0px;
  4. }
  5.  
  6. body {
  7.     background-color: orange;
  8. }
  9.  
  10. main {
  11.     width: 1000px;
  12.     background-color: black;
  13.     margin: auto;
  14.     color: white;
  15.     margin-top: 20px;
  16. }
  17.  
  18. h1 {
  19.     text-transform: uppercase;
  20.     font-family: 'Arial Narrow', sans-serif;
  21.     text-align: center;
  22.     padding: 10px;
  23.     border-bottom: 1px solid orange;
  24. }
  25.  
  26. nav a {
  27.     color: red;
  28.     font-size: 20px;
  29.     text-decoration: none;
  30. }
  31.  
  32. nav a:hover {
  33.     color: orange;
  34.     text-decoration: underline;
  35.     transition: all 400ms;
  36. }
  37.  
  38. nav {
  39.     display: flex;
  40.     justify-content: space-around;
  41.     padding: 10px 100px;
  42.     font-family: 'Arial Narrow', sans-serif;
  43.     font-weight: bold;
  44. }
  45.  
  46. .info {
  47.     min-height:500px;
  48.     background-color: rgb(48, 47, 47);
  49.     padding: 50px;
  50. }
  51.  
  52. .image {
  53.     width: 300px;
  54. }
  55.  
  56. img {
  57.     width: 100%;
  58. }
  59.  
  60. .score-card {
  61.     background-color: black;
  62.     margin-bottom: 30px;
  63.     border-radius: 10px;
  64.     box-shadow: 5px 5px 20px 5px grey;
  65. }
  66.  
  67.  
  68. .score-card div {
  69.     display: inline-block;
  70.     vertical-align: top;
  71. }
  72.  
  73. .score {
  74.     padding: 10px;
  75.     text-align: center;
  76.     width: 60%;
  77. }
  78.  
  79. h2 {
  80.     color: orange;
  81. }
  82.  
  83. .info a {
  84.     color: red;
  85.     font-size: 16px;
  86.     text-decoration: none;
  87.     font-style: italic;
  88.     text-align: right;
  89. }
  90.  
  91. p {
  92.     font-size: 20px;
  93.     margin: 10px 0px;
  94. }
  95.  
  96. .result {
  97.     font-size: 30px;
  98. }
  99.  
  100. .link {
  101.     text-align: right;
  102. }
  103.  
  104. .active {
  105.     color: lime;
  106. }
  107.  
  108. .finished {
  109.     color: darkred;
  110. }
  111.  
  112. .incoming {
  113.     color: blue;
  114. }
  115.  
  116. .active-page {
  117.     color: white;
  118. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement