summaryrefslogtreecommitdiff
path: root/index.css
blob: 271e489ded5992c5577841d1cb5c96b73cf46048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
.white{
    background-color: antiquewhite;
    height: 100px;
    width: 100px;
}

.black{
    height: 100px;
    width: 100px; 
    background-color: brown;   
}

body{
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chess-board{
    width: 800px;
    height: 800px;
    display: grid;
    grid-template-columns:repeat(8,1fr);
    grid-template-rows:repeat(8,1fr);
}