Padel-Tournaments-System/frontend/single_tournament.css

79 lines
1.3 KiB
CSS
Raw Normal View History

.tournamentBox {
background-color: #0f64f2;
color: white;
border-style: solid;
border-width: 2px;
margin-top: 25px;
/*Sztuczny margin od drugiego boxa*/
margin-right: 1000px;
flex-direction: column;
flex-wrap: nowrap;
height: 160px;
width: 600px
}
/**/
.tournamentIconBox {
width: 20%;
height: 100%;
float: left;
/*padding: 25px;*/
top: 50%;
left: 50%;
}
.tournamentIcon {
margin: 0;
position: relative;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
/**/
.tournamentDataBox {
width: 80%;
height: 100%;
float: right;
}
.tournamentData {
margin-top: 5%;
align-items: center;
text-align: left;
/*padding-left: 10%;*/
}
/**/
.eventHeader {
text-align: center;
padding-top: 5px;
padding-bottom: 5px;
}
.eventInside {
background-color: white;
color: #4C8BF5;
height: auto;
border: solid;
border-color: lightgray;
padding: 10px;
}
.eventInside>p {
color: lightgray;
}
.myButton {
background-color: #4C8BF5;
border-radius: 28px;
border: 1px solid #4C8BF5;
display: inline-block;
cursor: pointer;
color: #ffffff;
font-family: Arial;
font-size: 9px;
padding: 8px 13px;
text-decoration: none;
}