Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,46 @@

.wrapper{
display: grid;
grid-template-columns: repeat(1,1fr 0.5fr 1fr);
grid-auto-rows: minmax(200px,auto);
grid-column-gap: 10px;

}
#one{
justify-content: flex-end;
display: flex;
text-align: center;

}
#three{
text-align: center;
justify-content: flex-start;
display: flex;

}
.heros{
margin: 5px;
border: 2px solid #D4D4D4;
border-radius: 10px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.villans{
margin: 5px;
border: 2px solid #D4D4D4;
border-radius: 10px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.Scores{
display: flex;
text-align: center;
font-size: 40px;
font-weight: bold;
justify-content: center;

}
.Rank{
font-size: xx-large;
}
.footer{
margin-left : 80px;
font-size : 18px;
Expand Down