You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
342 B
CSS
22 lines
342 B
CSS
.grid-container {
|
|
font-family: Arial, sans-serif;
|
|
font-size: 4vh;
|
|
//width: 100%;
|
|
display: grid;
|
|
grid-template-columns: repeat(100, 1fr);
|
|
grid-auto-rows: minmax(100px, auto);
|
|
margin-left: 30%;
|
|
}
|
|
|
|
.grid-item {
|
|
padding: 10px;
|
|
background: green;
|
|
border-radius: 20px;
|
|
border: 1px solid white;
|
|
text-align: left;
|
|
}
|
|
|
|
a {
|
|
color: white;
|
|
}
|