forked from IQBall/Application
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.
160 lines
2.6 KiB
160 lines
2.6 KiB
header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0 20px 0 20px;
|
|
background-color: #FF8444;
|
|
height: 160px;
|
|
}
|
|
body{
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: sans-serif;
|
|
background: #34495e;
|
|
}
|
|
.header-left {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.header-left img {
|
|
width: 120px;
|
|
height: 120px;
|
|
}
|
|
|
|
.header-center h2 {
|
|
font-size: 30px;
|
|
margin: 0;
|
|
}
|
|
|
|
.submit-button {
|
|
background-color: #34495e;
|
|
color: white;
|
|
padding: 18px 30px;
|
|
border: none;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
float: right;
|
|
font-size: 24px;
|
|
box-shadow: 4px 4px #1B1B1B;
|
|
}
|
|
|
|
#teams-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 60px;
|
|
background-color: #f2f2f2;
|
|
border-radius: 10px 10px 10px 10px;
|
|
box-shadow: 5px 5px #1B1B1B;
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
#teams-section h2 {
|
|
text-align: center;
|
|
font-size: 24px;
|
|
margin-top: 0;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
#teams-list {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
overflow: hidden;
|
|
justify-content: center;
|
|
}
|
|
.team-item {
|
|
padding: 15px 15px 5px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
height: 100%;
|
|
min-width: 150px;
|
|
margin: 10px;
|
|
background-color: #ccc;
|
|
border-radius: 15px;
|
|
|
|
overflow: hidden;
|
|
box-shadow: 3px 3px #585858;
|
|
}
|
|
|
|
.team-item .team-name {
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.team-name {
|
|
font-size: 18px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.team-item img {
|
|
border-radius: 15px;
|
|
width: 100%;
|
|
height: auto;
|
|
max-width: 150px;
|
|
max-height: 150px;
|
|
|
|
box-shadow: 2px 2px #A7A7A7;
|
|
}
|
|
|
|
#schemas-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 60px;
|
|
background-color: #f2f2f2;
|
|
border-radius: 10px 10px 10px 10px;
|
|
box-shadow: 5px 5px #1B1B1B;
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
#schemas-section h2 {
|
|
text-align: center;
|
|
font-size: 24px;
|
|
margin-top: 0;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
#schemas-list {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
overflow: hidden;
|
|
justify-content: center;
|
|
}
|
|
.schemas-item {
|
|
padding: 15px 15px 5px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
height: 100%;
|
|
min-width: 150px;
|
|
margin: 10px;
|
|
background-color: #ccc;
|
|
border-radius: 15px;
|
|
|
|
overflow: hidden;
|
|
box-shadow: 3px 3px #585858;
|
|
}
|
|
|
|
.schemas-item .schemas-name {
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.schemas-name {
|
|
font-size: 18px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.schemas-item img {
|
|
border-radius: 15px;
|
|
width: 100%;
|
|
height: auto;
|
|
max-width: 150px;
|
|
max-height: 150px;
|
|
|
|
box-shadow: 2px 2px #A7A7A7;
|
|
}
|
|
|