added shadows
continuous-integration/drone/push Build is passing Details

pull/1/head
Override-6 2 years ago
parent 0267795c3a
commit 49ed2e0cec

@ -35,6 +35,8 @@ body{
cursor: pointer; cursor: pointer;
float: right; float: right;
font-size: 16px; font-size: 16px;
box-shadow: 3px 3px #1B1B1B;
} }
#teams-section { #teams-section {
@ -80,6 +82,7 @@ body{
#teams-list { #teams-list {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
flex-wrap: wrap;
overflow: hidden; overflow: hidden;
} }
.team-item { .team-item {
@ -92,7 +95,9 @@ body{
margin: 10px; margin: 10px;
background-color: #ccc; background-color: #ccc;
border-radius: 15px; border-radius: 15px;
overflow: hidden; overflow: hidden;
box-shadow: 3px 3px #585858;
} }
.team-item .team-name { .team-item .team-name {
@ -121,4 +126,6 @@ body{
height: auto; height: auto;
max-width: 150px; max-width: 150px;
max-height: 150px; max-height: 150px;
box-shadow: 2px 2px #A7A7A7;
} }