CoolFace
Apppublic

Deva0718/devi-md-bot

sourceHugging Faceupdated 7mo agoView on Hugging Face
0likes
style.css70 linesDownload Raw Back to public
1body {
2    font-family: 'Poppins', sans-serif;
3    background: linear-gradient(135deg, #ff9ad5, #7ecbff);
4    height: 100vh;
5    display: flex;
6    justify-content: center;
7    align-items: center;
8}
9
10.card {
11    background: rgba(255,255,255,0.25);
12    backdrop-filter: blur(15px);
13    padding: 30px;
14    border-radius: 20px;
15    text-align: center;
16    width: 400px;
17    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
18    animation: fadeIn 1s ease-in-out;
19}
20
21h1 {
22    color: white;
23    font-weight: 600;
24}
25
26.info p {
27    color: white;
28    margin: 5px 0;
29}
30
31.qr-box {
32    margin: 15px 0;
33}
34
35.qr-box img {
36    width: 200px;
37    border-radius: 15px;
38    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
39}
40
41textarea {
42    width: 100%;
43    height: 80px;
44    border-radius: 15px;
45    border: none;
46    padding: 10px;
47    margin-top: 10px;
48    resize: none;
49}
50
51button {
52    margin-top: 15px;
53    padding: 10px 20px;
54    border-radius: 20px;
55    border: none;
56    background: white;
57    font-weight: bold;
58    cursor: pointer;
59    transition: 0.3s;
60}
61
62button:hover {
63    transform: scale(1.05);
64}
65
66@keyframes fadeIn {
67    from {opacity:0; transform: translateY(20px);}
68    to {opacity:1; transform: translateY(0);}
69}
70