Spaces:
Running
Running
File size: 1,606 Bytes
bc1d1af 968bdcb bc1d1af 968bdcb bc1d1af 968bdcb bc1d1af 968bdcb bc1d1af 968bdcb bc1d1af 968bdcb bc1d1af | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
}
#qrcode {
display: inline-block;
}
.qr-container {
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.qr-code-wrapper {
display: flex;
justify-content: center;
margin-bottom: 2rem;
}
.btn-primary {
background-color: #3b82f6;
color: white;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-primary:hover {
background-color: #2563eb;
transform: translateY(-2px);
}
.btn-secondary {
background-color: #737373;
color: white;
border: none;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-secondary:hover {
background-color: #525252;
transform: translateY(-2px);
}
.download-options {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.option-btn {
display: flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
}
.option-btn:hover {
transform: translateY(-2px);
}
@media (max-width: 640px) {
.download-options {
flex-direction: column;
align-items: center;
}
.option-btn {
width: 100%;
justify-content: center;
}
} |