добавлен репозиторий

This commit is contained in:
DmitriyB
2022-08-24 19:13:36 +05:00
commit 4843d7fb5c
27 changed files with 43635 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
.App {
}
.block {
width: 100%;
height: 100vh;
background-color: rgb(104, 104, 104);
display: flex;
justify-content: space-evenly;
}
.block:nth-child(even) {
background-color: #333333;
}
.block-item {
width: 200px;
height: 200px;
background-color: rgb(60, 65, 216);
border-radius: 20px;
display: flex;
justify-content: center;
align-items: center;
font-size: 30px;
font-weight: 600;
color: #FFFFFF;
}