style.css 1.58 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.main_container {
    width: 100vw;
    height: 100vh;
    /* background-color: blue; */
    display: flex;
    justify-content: center;
    align-items: center;
}



.main_table {
    table-layout: fixed;
    width: 90%;
    height: 90%;
    border-collapse: collapse;
    /* border: 3px solid aqua; */
  }
  
  thead th:nth-child(1) {
    width: 35%;
    border-top: 2px solid black;
    /* background-color: rebeccapurple; */
  }
  
  thead th:nth-child(2) {
    width: 5%;
  }
  
  thead th:nth-child(3) {
    width: 5%;
  }
  
  thead th:nth-child(4) {
    width: 5%;
  }

  thead th:nth-child(5) {
    width: 5%;
  }

  thead th:nth-child(6) {
    width: 5%;
  }

  thead th:nth-child(7) {
    width: 5%;
  }

  thead th:nth-child(8) {
    width: 5%;
  }

  thead th:nth-child(9) {
    width: 5%;
  }

  thead th:nth-child(10) {
    width: 20%;
  }
  
  th, td {
    padding: 20px;
  }

  .par {
      background-color: #F8F9FA;
  }

  .club_container {
      display: flex;
  }

  .order_club {
      width: 5%;
      display: flex;
    justify-content: center;
    align-items: center;
  }

  .image_club {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nombre_club {
    width: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mr-2 {
      margin-right: 20px;
  }

  .ultimos_partidos {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .ultimos_partidos img {
    margin-right: 10px;
  }