-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (110 loc) Β· 2.28 KB
/
style.css
File metadata and controls
124 lines (110 loc) Β· 2.28 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
body {
font-family: 'Segoe UI', sans-serif;
background: linear-gradient(to right, #e0eafc, #cfdef3);
margin: 0;
padding: 2rem;
display: flex;
justify-content: center;
align-items: flex-start;
min-height: 100vh;
}
.container {
background-color: rgba(255, 255, 255, 0.8);
padding: 2rem;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
backdrop-filter: blur(10px);
max-width: 600px;
width: 100%;
transition: all 0.3s ease-in-out;
}
h1 {
margin-bottom: 1.5rem;
color: #2d89ef;
font-size: 2rem;
}
input[type="text"],
input[type="number"],
input[type="color"] {
padding: 0.6rem;
margin: 0.5rem 0;
border: 2px solid #ccc;
border-radius: 10px;
width: 100%;
box-sizing: border-box;
transition: border 0.3s ease, box-shadow 0.3s ease;
}
input:focus {
border-color: #2d89ef;
box-shadow: 0 0 6px rgba(45, 137, 239, 0.5);
outline: none;
}
.options {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
margin-top: 1rem;
}
.options label {
display: flex;
flex-direction: column;
font-size: 0.9rem;
color: #333;
}
button {
padding: 0.8rem 2rem;
margin-top: 1.5rem;
background: #2d89ef;
color: #fff;
border: none;
border-radius: 12px;
font-weight: bold;
cursor: pointer;
position: relative;
overflow: hidden;
transition: background 0.3s ease, transform 0.3s ease;
}
button::after {
content: "β";
position: absolute;
right: 20px;
opacity: 0;
transition: all 0.3s ease;
}
button:hover {
background: #1a5ccf;
padding-right: 2.5rem;
transform: translateY(-2px);
}
button:hover::after {
opacity: 1;
right: 10px;
}
.preview-box {
margin-top: 2rem;
background-color: rgba(250, 250, 250, 0.9);
padding: 1.5rem;
border-radius: 16px;
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
backdrop-filter: blur(6px);
transition: all 0.3s ease;
}
.preview-box h2 {
margin-bottom: 1rem;
font-size: 1.2rem;
color: #444;
}
#qrcode {
display: flex;
justify-content: center;
transition: all 0.3s ease-in-out;
}
.ads {
margin-top: 2rem;
padding: 1rem;
background: #fff0c4;
border-radius: 10px;
font-size: 0.9rem;
color: #555;
border: 1px dashed #ffc107;
}