Advertisement
Guest User

index.css

a guest
Apr 25th, 2020
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.60 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: 40%;
  88. padding-left: 10px;
  89. }
  90.  
  91. .quarterScore {
  92. width: 20%;
  93. }
  94.  
  95. .finalScore {
  96. background-color: lightyellow;
  97. padding-left: 5px;
  98. width: 20%;
  99. }
  100.  
  101. .otherBoxScore {
  102. padding-left: 5px;
  103. }
  104.  
  105. .final {
  106. padding-left: 5px;
  107. width: 20%;
  108. }
  109.  
  110. .scoringSummary {
  111. margin-left: 2px;
  112. background-color: lightgray;
  113. margin-top: 10px;
  114. }
  115.  
  116. .scoringHeader {
  117. color: red;
  118. padding-left: 5px;
  119. padding-top: 10px;
  120. font-weight: bold;
  121. font-family: 'Roboto', sans-serif;
  122. font-size: 14px;
  123. margin: 0px;
  124. }
  125.  
  126. .scoringEvent {
  127. padding-left: 5px;
  128. font-family: 'Roboto', sans-serif;
  129. font-size: 12px;
  130. margin: 0px;
  131. }
  132.  
  133. .teamName {
  134. font-family: 'Roboto', sans-serif;
  135. display: inline;
  136. margin-left: 5px;
  137. }
  138.  
  139. .teamRecord {
  140. font-family: 'Roboto', sans-serif;
  141. display: inline;
  142. font-size: 14px;
  143. }
  144. .playerStats {
  145. font-family: 'Roboto', sans-serif;
  146. font-size: 14px;
  147. margin: 0px;
  148. padding-left: 5px;
  149. }
  150. .banner {
  151. width: 900px;
  152. }
  153.  
  154. .screenshot {
  155. width: 900px;
  156. background-color: white;
  157. margin: 0 auto;
  158. display: inline-block;
  159. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement