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.
125 lines
1.9 KiB
125 lines
1.9 KiB
#mainDiv {
|
|
background-color: lightblue;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.square {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
|
|
#main_color {
|
|
border: solid;
|
|
}
|
|
|
|
section {
|
|
background-color: #fff;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 60%;
|
|
}
|
|
|
|
#colors{
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
.color {
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
#logo {
|
|
width: 90%;
|
|
aspect-ratio: 3/2;
|
|
object-fit: contain;
|
|
mix-blend-mode: color-burn;
|
|
}
|
|
|
|
#delete{
|
|
border-radius:10px ;
|
|
background-color: red;
|
|
color: white;
|
|
}
|
|
|
|
.player{
|
|
flex-direction: row;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
#profilePicture{
|
|
height:40px;
|
|
width:40px;
|
|
}
|
|
|
|
#Members{
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: lightcoral;
|
|
width: 60%;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
.Member{
|
|
width: 60%;
|
|
background-color: red;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
#teamInfo{
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
width: 60%;
|
|
align-items: center;
|
|
background-color: #666666;
|
|
}
|
|
|
|
#headMembers{
|
|
width: 33%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
#addMember{
|
|
height: 30px;
|
|
aspect-ratio: 1/1;
|
|
border-radius: 100%;
|
|
align-self: center;
|
|
}
|
|
|
|
.popup {
|
|
display: none;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0,0,0,0.7);
|
|
}
|
|
|
|
.popup-content {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
background-color: #fff;
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.close {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 10px;
|
|
font-size: 20px;
|
|
cursor: pointer;
|
|
} |