mirror of
https://github.com/MrEidam/Black-Jack.git
synced 2025-12-29 17:06:11 +00:00
Uploading files to github
This commit is contained in:
37
style.css
Normal file
37
style.css
Normal file
@@ -0,0 +1,37 @@
|
||||
@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;
|
||||
}
|
||||
Reference in New Issue
Block a user