-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (43 loc) · 915 Bytes
/
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
* {
box-sizing: border-box;
}
body {
width: 100%;
height: 100vh;
margin: 0;
background: linear-gradient(45deg, skyblue, royalblue, blue);
}
.main-container {
font-family: Arial, Helvetica, sans-serif;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 20px;
width: 100%;
height: 100vh;
}
.qr-text {
font-family: 'Courier New', Courier, monospace;
padding: 0.7rem 1rem;
font-size: 1rem;
background-color: rgb(4, 15, 25);
color: white;
box-shadow: 0 2px 8px -3px black;
}
.download-btn {
padding: 0.7rem 1rem;
font-size: 1rem;
font-family: monospace;
font-weight: bold;
cursor: pointer;
word-spacing: -5px;
transform: scale(1);
transition: 0.4s;
border-radius: 5px;
border: none;
}
.download-btn:hover {
transform: scale(1.1);
font-size: 1.1rem;
}