Skip to content
Snippets Groups Projects
Select Git revision
  • main default protected
1 result

equipo.css

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    equipo.css 5.25 KiB
    body {
        margin: 0;
        padding: 0;
        height: 1000px;
        display: flex;
        flex-direction: column;
    }
    
    .bebas-neue-regular {
        font-family: "Bebas Neue", serif;
        font-weight: 400;
        font-style: normal;
      }
    
      @font-face {
        font-family: 'PremierSans';
        src: url('/fonts/Premier Sans.otf') format('opentype'),
             url('/fonts/Premier Sans.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }
    
    @font-face {
        font-family: 'aptos';
        src: url('/fonts/aptos.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }
    
    .header{
        font-family: "Bebas Neue";
        text-align: center;
        background-color: #38003C; 
        margin-bottom: 0px;
        width: 100%;
      }
    
    h1 {
        color: white;
        font-size: 80px;
        margin-bottom: 10px;
        margin-top: 0;
        padding-top: 30px;
    }
    
    h4 {
        color: #00FF85;
        font-size: 25px;
        margin-top: 10px;
    }
    
    h3 {
        font-family: "Bebas Neue";
        color: #00FF85;
        font-size: 40px;
        margin-top: 20px;
        margin-bottom: 10px;
        padding-left: 30px;
    }
    
    .sideNav {
        border-top: solid 3px grey;
        border-right: solid 5px #00FF85;
        border-bottom: solid 5px #00FF85;
        border-bottom-right-radius: 30px;
        background-color: #38003C;
        padding-top: 30px;
        padding-bottom: 30px;
        width: 200px;
        height: 100%;
    }
    
    .navButton {
        display: block;
        padding: 10px 20px;
        color: white;
        background-color: #38003C;
        border: none;
        text-align: center;
        width: 100%;
        font-size: 25px;
        cursor: pointer;
        font-family: "Bebas Neue";
    }
    
    .navButton:hover {
        background-color: #00FF85;
        color: black;
    }
    .content {
        display: flex;
        height: 90%;
        margin-top: 0;
    }
    
    .mainContent{
        width: 100%;
        height: 100%;
    }
    
    .table {
        width: 100%;
        height: 100%;
        border-collapse: collapse;
        margin-top: 20px;
    }
    
    .headerTable {
        background-color: #38003C;
        color: white;
        font-size: 40px;
        text-align: justify;
        display: flex;
        justify-content: space-between;
        margin-top: 40px;
        margin-left: 100px;
        margin-right: 100px;
        border-radius: 30px;
    }
    
    
    #tableTitle{
        margin-left: 100px;
        padding-top: 10px;
        font-family: "Bebas Neue";
        font-size: 50px;
    }
    
    #season {
        margin-right: 50px;
        margin-top: 50px;
        font-family: "PremierSans", Arial, Helvetica Neue, Helvetica, sans-serif;
        font-size: 60px;
    }
    
    #seasonNumber {
        margin-top: 40px;
        margin-right: 100px;
        font-size: 80px;
        font-family: "PremierSans", Arial, Helvetica Neue, Helvetica, sans-serif;
    }
    
    .seasonInfo{
        display: flex; 
    }
    
    #graph {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        height: 100%;
        border: solid 3px black;
    }
    
    
    
    .bar {
        fill: steelblue;
        
    }
    
    .bar:hover {
        fill: red;
    }
    .axis text {
        font: 20px sans-serif;
    }
    
    .axis path,
    .axis line {
        fill: none;
        shape-rendering: crispEdges;
    }
    
    
    /* equipo.html */
    .subHeader {
        display: flex;
        align-items: center;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 30px;
        width: 70%; /* Ajusta el ancho según sea necesario */
        
    }
    
    #subHeaderTitle {
        font-family: "Bebas Neue";
        color: #38003C;
        font-size: 40px;
        padding-right: 70px;
        padding-left: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
        border-right: solid 3px grey;
    }
    
    label {
        font-family: "aptos";
        font-size: 18px;
        color: #38003C;
        margin-left: 10px;
        margin-bottom: 10px;
    }
    
    .inputs {
        margin-left: 80px;
        display: flex;
        flex-direction: column;
    }
    
    input, select {
        font-family: "aptos";
        font-size: 20px;
        padding: 15px;
        border-radius: 20px;
        border: solid 2px #38003C;
    }
    
    select:hover, input:hover {
        border-color: #00FF85;
    }
    
    option {
        font-family: "aptos";
        font-size: 18px;
        color: #38003C;
        background-color: white;
    }
    
    
    
    #graphContainer {
        display: flex;
        align-items: flex-start;
        height: 80%;
        border: solid 3px black;
        border-radius: 20px;
        
        margin-left: 100px;
        margin-right: 100px;
        width: 85%;
    }
    
    #teamTitle {
        font-family: "Bebas Neue";
        color: black;
        font-size: 70px;
        padding-right: 50px;
        
        margin-left: 80px;
        margin-top: 60px;
    }
    
    .infoGraph {
        display:flex;
        align-items: flex-start;
        justify-content: space-between;
        height: 100%; 
        width: 650px; 
        border-right: solid 3px grey;
    }
    
    #teamLogo {
        margin-top: 50px;
        margin-left: 50px;
        padding-right: 60px;
    }
    
    #graph2 {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        margin-top: 70px;
    }
    
    
    .toolTip {
        pointer-events: none;
          position: absolute;
          display: none;
        min-width: 50px;
        height: auto;
        background: none repeat scroll 0 0 #ffffff;
        padding: 9px 14px 6px 14px;
        border-radius: 2px;
        text-align: center;
        line-height: 1.3;
        color: #5B6770;
        box-shadow: 0px 3px 9px rgba(0, 0, 0, .15);
      }
      .toolTip:after {
        content: "";
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 12px solid white;
        position: absolute;
        bottom: -10px;
        left: 50%;
        margin-left: -12px;
      }  
      .toolTip span {
          font-weight: 500;
        color: #081F2C;
      }
    
    #svg{
        margin-left: 100px;
    }