You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Application-Web/front/style/team_panel.css

133 lines
2.0 KiB

#mainDiv {
display: flex;
flex-direction: column;
align-items: center;
height: 100%;
}
header{
display: flex;
justify-content: center;
background-color: #525252;
width: 100%;
margin-bottom: 5px;
}
header h1 a{
color: orange;
text-decoration: none;
font-size: 1.5em;
}
.square {
width: 50px;
height: 50px;
}
#main_color {
border: solid;
}
#teamInfo{
display: flex;
flex-direction: column;
align-items: center;
width: 60%;
background-color: #8F8F8F;
padding-bottom: 10px;
border-radius: 10px;
}
#firstPart{
display: flex;
flex-direction: column;
align-items: center;
}
#teamName{
font-size: 2.8em;
}
#colors{
display: flex;
flex-direction: column;
}
.color {
flex-direction: row;
justify-content: space-between;
}
#colorsTitle{
width: 110%;
display: flex;
flex-direction: row;
justify-content: space-between;
font-size: 1.3em;
color: white;
}
#actualColors{
display: flex;
flex-direction: row;
justify-content: space-around;
}
#logo {
width: 90%;
aspect-ratio: 3/2;
object-fit: contain;
mix-blend-mode: color-burn;
}
#delete{
border-radius:10px ;
background-color: red;
color: white;
margin-top: 10px;
margin-bottom: 10px;
}
#headMembers{
width: 33%;
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
#addMember{
height: 30px;
aspect-ratio: 1/1;
border-radius: 100%;
align-self: center;
}
#Members{
display: flex;
flex-direction: column;
background-color: #BCBCBC;
width: 60%;
align-items: center;
justify-content: space-around;
border-radius: 10px;
}
.Member{
width: 60%;
background-color: white;
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
border-radius: 10px;
margin-top: 5px;
margin-bottom: 5px;
}
#profilePicture{
height:40px;
width:40px;
}