-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (86 loc) · 1.64 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #5a4ca1;
font-family: "poppins", sans-serif;
}
.container {
width: 360px;
height: 235px;
padding: 20px 20px 30px 20px;
background: #fff;
border-radius: 5px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition: all 0.2s;
}
.container .app-name {
width: 100%;
height: 60px;
position: absolute;
top: 0;
left: 0;
display: flex;
align-items: center;
padding: 25px;
font-size: 11px;
border-radius: 1px solid grey;
}
.container .app-name i {
padding-right: 7px;
}
.container .url-box {
margin-top: 60px;
}
.container .url-box p {
font-size: 12px;
color: grey;
}
.container .url-box input {
all: unset;
width: 92%;
height: 20px;
padding: 10px;
background: #f5f5f5;
font-size: 14px;
margin-top: 8px;
border-radius: 3px;
}
.container .generate-btn {
all: unset;
width: 100%;
height: 50px;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
background: #5a4ca1;
border-radius: 3px;
margin-top: 12px;
cursor: pointer;
font-size: 14px;
}
.container .qr-box {
height: 200px;
width: 100%;
border: 1px solid grey;
border-radius: 3px;
margin-top: 25px;
border-radius: 3px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
visibility: hidden;
overflow: hidden;
}
::selection {
background: rgb(100, 149, 237, 0.8);
color: #fff;
}