-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (63 loc) · 1.4 KB
/
Copy pathstyle.css
File metadata and controls
71 lines (63 loc) · 1.4 KB
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
body {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background: linear-gradient(135deg, #ffd1ff, #c8e7ff, #d4ffea);
background-size: 300% 300%;
animation: gradientMove 12s ease infinite;
}
@keyframes gradientMove {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.card {
width: 90%;
max-width: 650px;
padding: 40px;
background: rgba(255, 255, 255, 0.35);
backdrop-filter: blur(12px);
border-radius: 25px;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
margin-bottom: 40px;
}
#quote {
font-size: 2.4rem;
font-weight: 600;
color: #000;
min-height: 150px;
padding: 10px;
}
#categoryBox {
margin-top: 20px;
}
select {
padding: 12px 18px;
border-radius: 12px;
border: none;
font-size: 1rem;
background: white;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
#bigBtn {
padding: 18px 40px;
font-size: 1.2rem;
font-weight: 600;
border: none;
border-radius: 50px;
background: linear-gradient(135deg, #ffb8ff, #9cd5ff);
color: white;
cursor: pointer;
box-shadow: 0 6px 25px rgba(0,0,0,0.15);
transition: 0.25s;
}
#bigBtn:hover {
transform: scale(1.08);
}