-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
154 lines (130 loc) · 2.73 KB
/
style.css
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/* Basic reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'poppins', sans-serif;
background-color: #ffffff;
color: #66686C;
line-height: 1.6;
align-items: center;
height: 100vh;
padding: 20px;
}
.outerContainer{
display: flex;
flex-wrap: wrap; /* Allows children to wrap onto new lines */
justify-content: center;
}
.container {
background: #fff;
border-radius: 30px;
box-shadow: 10px 15px 40px rgba(0, 0, 0, 0.1);
padding: 40px;
width: 80%;
max-width: 500px;
margin:10px 30px 30px 30px;
border:1px solid #e7e7e7;
}
.QRDiv{
background: #fff;
border-radius: 30px;
text-align: center;
box-shadow: 10px 15px 40px rgba(0, 0, 0, 0.1);
padding: 40px;
/* width: 30%; */
min-width: 400px;
margin:10px 30px 30px 30px;
border:1px solid #e7e7e7;
}
.title {
font-size: 2em;
color: #333;
text-align: center;
margin-bottom: 10px;
margin-top: 20px;
}
.input-group {
margin-bottom: 20px;
}
.input-group label {
display: block;
margin-bottom: 5px;
}
.input-group input {
width: 100%;
padding: 20px;
border: 1px solid #ddd;
border-radius: 10px;
}
/* Style the button */
.button {
width: 100%;
background: #007bff;
color: #fff;
border: none;
padding: 12px 10px;
border-radius: 12px;
cursor: pointer;
font-size: 24px;
font-weight: 550;
}
.button:hover {
background: #0056b3;
}
/* QR Code styles */
#qrcode {
margin-top: 20px;
display: flex;
justify-content: center;
margin-bottom:10px;
}
/* Tooltips
#qrcode[title]:hover:after {
content: attr(title);
position: absolute;
top: -35px;
left: 50%;
transform: translateX(-50%);
background: #e9661c;
color: #fff;
padding: 5px 15px;
border-radius: 5px;
font-size: 14px;
white-space: nowrap;
} */
/* Adjustments for the UPI logos */
.upi-logos {
display: flex;
justify-content:center;
}
.upi-logos img {
max-width: 140px; /* Adjust size as needed */
/* border-radius: 50%; Circular logos */
margin:-10px -15px;
}
.secondaryButton{
padding:10px 20px;
background:white;
border:2px solid #e7e7e7;
margin:10px 20px;
border-radius: 10px;
}
/*Focus Color for inputs */
button:focus, input:focus {
outline: none;
border: 1px solid #a2a2a2; /* Lighter border */
}
/* Targets screens smaller than 600px */
@media (max-width: 600px) {
.outerContainer {
flex-direction: column; /* Stacks flex children vertically */
}
.container,
.QRDiv {
width: 90%; /* Makes children take full width */
margin-bottom: 20px; /* Adds space between the stacked elements */
}
}