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.
136 lines
2.1 KiB
136 lines
2.1 KiB
#main-div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
height: 100%;
|
|
}
|
|
|
|
#main-div 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;
|
|
border: 2px white solid;
|
|
}
|
|
|
|
#team-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 60%;
|
|
background-color: #8f8f8f;
|
|
padding-bottom: 10px;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#first-part {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
#team-name {
|
|
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;
|
|
}
|
|
|
|
#actual-colors {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
#logo {
|
|
aspect-ratio: 3/2;
|
|
object-fit: contain;
|
|
max-width: 70%;
|
|
max-height: 70%;
|
|
}
|
|
|
|
#delete {
|
|
border-radius: 10px;
|
|
background-color: red;
|
|
color: white;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
#edit {
|
|
border-radius: 10px;
|
|
background-color: orange;
|
|
color: white;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#head-members {
|
|
width: 33%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
#add-member {
|
|
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;
|
|
}
|
|
|
|
#profile-picture {
|
|
height: 40px;
|
|
width: 40px;
|
|
}
|