66 lines
1006 B
CSS
66 lines
1006 B
CSS
|
|
||
|
/*1'st layer*/
|
||
|
.tournamentIconBox {
|
||
|
width: 20%;
|
||
|
height: 100%;
|
||
|
float: left;
|
||
|
/*padding: 25px;*/
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
}
|
||
|
|
||
|
.tournamentDataBox {
|
||
|
width: 30%;
|
||
|
height: 100%;
|
||
|
float: left;
|
||
|
}
|
||
|
|
||
|
.signInBox {
|
||
|
width: 40%;
|
||
|
height: 100%;
|
||
|
float: left;
|
||
|
}
|
||
|
|
||
|
/*Element */
|
||
|
.tournamentIcon {
|
||
|
margin: 0;
|
||
|
position: relative;
|
||
|
top: 45%;
|
||
|
left: 45%;
|
||
|
-ms-transform: translate(-50%, -50%);
|
||
|
transform: translate(-50%, -50%);
|
||
|
height: 50%;
|
||
|
}
|
||
|
|
||
|
.tournamentData {
|
||
|
margin-top: 1%;
|
||
|
text-align: left;
|
||
|
/*padding-left: 10%;*/
|
||
|
color: #282828E5;
|
||
|
}
|
||
|
|
||
|
.signIn {
|
||
|
/*Alignment*/
|
||
|
margin: 5%;
|
||
|
width: 50%;
|
||
|
height: 50%;
|
||
|
|
||
|
/*Visual*/
|
||
|
background: #B8BC00;
|
||
|
border-radius: 63px;
|
||
|
border: 1px solid #B8BC00;
|
||
|
|
||
|
/*Text*/
|
||
|
color: #FFFFFF;
|
||
|
font-family: 'Montserrat', serif;
|
||
|
font-size: 34px;
|
||
|
flex: none;
|
||
|
text-align: center;
|
||
|
|
||
|
}
|
||
|
|
||
|
.tournamentInfo {
|
||
|
font-family: 'Montserrat', serif;
|
||
|
font-style: normal;
|
||
|
color: white;
|
||
|
}
|