browser-go-proto/css/main.css

24 lines
384 B
CSS
Raw Normal View History

2019-07-26 18:02:30 +00:00
*, *::before, *::after {
box-sizing: border-box;
}
body {
height: 100vh;
margin: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
section {
display: grid;
grid-template-columns: repeat(7, 10vmin);
grid-template-rows: repeat(6, 10vmin);
grid-gap: 1vmin;
}
section div {
border-radius: 50%;
border: 1px solid grey;
}