Files
Black-Jack/style.css
2024-10-01 23:24:28 +02:00

37 lines
652 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Ubuntu', sans-serif;
}
body{
background-color: #333;
color: #fff;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
img.card{
aspect-ratio: 1/1;
object-fit: contain;
height: 200px;
margin: .2rem;
}
h2{
margin-top: .5rem;
}
button{
border-radius: 5px;
border: none;
height: 30px;
width: 60px;
margin: .5rem;
}