-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
107 lines (83 loc) · 1.11 KB
/
index.css
File metadata and controls
107 lines (83 loc) · 1.11 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
* {
padding: 0px;
margin: 0px;
}
html {
scroll-behavior: smooth;
}
body {
background-color: #f6f9fc;
}
ul {
list-style-type: square;
}
#main-body {
max-width: 50rem;
}
#header {
padding: 1rem;
display: flex;
align-items: center;
}
#title {
font-size: 2rem;
text-align: left;
word-wrap: break-word;
}
.spacer {
flex-grow: 1;
}
#logo {
border-radius: 50%;
aspect-ratio: 1/1;
width: 7rem;
height: 7rem;
}
.tab-bar {
padding: 0 0.5rem 0 0.5rem;
}
.tab-content {
padding: 1rem;
}
.welcome {
font-size: 1.5rem;
}
.btn-xl {
font-size: 1.2rem;
padding: 0.8rem;
}
.icon {
font-size: 1.2rem;
padding-right: 0.4rem;
}
.qr-rect {
fill: white;
}
.qr-path {
fill: black;
}
.made-by {
color: #cacaca;
}
.made-by>a {
color: #ae91dd;
}
.upi-qr {
height: 245px;
width: 245px;
}
.upi-logo {
height: 3rem;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #222222;
color: white;
}
.qr-rect {
fill: black;
}
.qr-path {
fill: white;
}
}