1
Fork 0
This repository has been archived on 2024-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
qr-code-component/style.css

48 lines
649 B
CSS
Raw Normal View History

2024-05-31 09:10:47 +00:00
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
background-color: #d5e1ef;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.card {
border-radius: 20px;
background-color: #ffffff;
font-family: "Outfit", sans-serif;
padding: 16px;
text-align: center;
width: min-content;
h1 {
color: #1f314f;
font-size: 22px;
font-weight: 700;
}
p {
color: #7d889e;
font-size: 15px;
font-weight: 400;
padding: 0 16px;
}
img {
width: 288px;
height: 288px;
border-radius: 10px;
}
filter: drop-shadow(rgba(0, 0, 0, 0.25) 0px 4px 4px);
}