Advertisement
Guest User

index.css

a guest
Apr 25th, 2020
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. .container {
  2. width: 900px;
  3. background: white;
  4. display: flex;
  5. margin: 0 auto;
  6. }
  7.  
  8. .one {
  9. flex: 600px;
  10. border-right-width: 1px;
  11. border-right-color: lightgray;
  12. border-right-style: solid;
  13. }
  14.  
  15. .two {
  16. flex: 300px;
  17. background: white;
  18. }
  19.  
  20. h1 {
  21. font-size:28px;
  22. font-family: 'Roboto', sans-serif;
  23. }
  24.  
  25. .story_image {
  26. max-width: 96%;
  27. margin-right: 20px;
  28. }
  29.  
  30. .pictureCaption {
  31. font-family: 'Roboto', sans-serif;
  32. font-size: 14px;
  33. color: gray;
  34. margin-top: 0px;
  35. }
  36.  
  37. .story {
  38. font-family: 'Roboto', sans-serif;
  39. font-size: 14px;
  40. margin-right: 20px;
  41. }
  42.  
  43. .gameInfo {
  44. margin-left: 10px;
  45. font-family: 'Roboto', sans-serif;
  46. font-size: 14px;
  47. color: black;
  48. font-style: italic;
  49. font-weight: bold;
  50. text-transform: uppercase;
  51. }
  52.  
  53. .funBorder {
  54. border-bottom-width: 1px;
  55. border-bottom-style: solid;
  56. border-bottom-color: lightgray;
  57. width: 50%;
  58. }
  59.  
  60. .boxScore {
  61. margin-top: 20px;
  62. width: 100%;
  63. font-family: 'Roboto', sans-serif;
  64. font-size: 14px;
  65. border-collapse: collapse;
  66. }
  67.  
  68. .header td {
  69. border-bottom: 2pt solid black;
  70. padding-top: 5px;
  71. padding-bottom: 5px;
  72. }
  73.  
  74. .away td {
  75. border-bottom: 1pt solid lightgray;
  76. padding-top: 5px;
  77. padding-bottom: 5px;
  78. }
  79.  
  80. .home td {
  81. border-bottom: 2pt solid black;
  82. padding-top: 5px;
  83. padding-bottom: 5px;
  84. }
  85.  
  86. .boxTeam {
  87. width: 30%;
  88. padding-left: 10px;
  89. }
  90.  
  91. .quarterScore {
  92. width: 10%;
  93. }
  94.  
  95. .finalScore {
  96. background-color: lightyellow;
  97. padding-left: 5px;
  98. }
  99.  
  100. .otherBoxScore {
  101. padding-left: 5px;
  102. }
  103.  
  104. .final {
  105. padding-left: 5px;
  106. width: 20%;
  107. }
  108.  
  109. .scoringSummary {
  110. margin-left: 2px;
  111. background-color: lightgray;
  112. margin-top: 10px;
  113. }
  114.  
  115. .scoringHeader {
  116. color: red;
  117. padding-left: 5px;
  118. padding-top: 10px;
  119. font-weight: bold;
  120. font-family: 'Roboto', sans-serif;
  121. font-size: 14px;
  122. margin: 0px;
  123. }
  124.  
  125. .scoringEvent {
  126. padding-left: 5px;
  127. font-family: 'Roboto', sans-serif;
  128. font-size: 12px;
  129. margin: 0px;
  130. }
  131.  
  132. .teamName {
  133. font-family: 'Roboto', sans-serif;
  134. display: inline;
  135. margin-left: 5px;
  136. }
  137.  
  138. .teamRecord {
  139. font-family: 'Roboto', sans-serif;
  140. display: inline;
  141. font-size: 14px;
  142. }
  143. .playerStats {
  144. font-family: 'Roboto', sans-serif;
  145. font-size: 14px;
  146. margin: 0px;
  147. padding-left: 5px;
  148. }
  149. .banner {
  150. width: 900px;
  151. }
  152.  
  153. .screenshot {
  154. width: 900px;
  155. background-color: white;
  156. margin: 0 auto;
  157. display: inline-block;
  158. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement