-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
70 lines (63 loc) · 1.3 KB
/
index.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
@import url("https:fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600&display=swap");
*{
box-sizing: border-box;
font-family: "Inter",sans-serif;
}
.app-container{
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.app-container h1{
font-weight: 600;
font-size: 18px;
color: #3498db;
padding: 10px 0;
}
.qr-image{
padding: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-bottom: 10px;
}
.input-label{
display: block;
margin-bottom: 8px;
color: #3498db;
font-size: 15px;
font-weight: 500;
}
#datatype,
#size-input{
padding: 12px;
margin-bottom: 20px;
width: 100%;
font-size: 16px;
border: 2px solid #3498db;
border-radius: 5px;
}
button{
padding: 15px 20px;
font-size: 18px;
color: #fff;
border:none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
.generate-button{
background-color: #3498db;
}
.generate-button:disabled{
background-color: #bdc3c7;
cursor:not-allowed;
}
.download-button{
background-color: #27ae60;
margin-left: 10px;
}
.download-button:hover{
background-color: #219a52;
}