-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqrcode.css
More file actions
117 lines (92 loc) · 1.7 KB
/
Copy pathqrcode.css
File metadata and controls
117 lines (92 loc) · 1.7 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
108
109
110
111
112
113
114
115
@media only screen and (max-width:365px) {
.cont{
min-height: 280px;
}
.cont.active{
min-height: 480px;
}
}
*{
margin: 0;
padding: 0;
}
body{
background: rgb(201, 245, 245);
display: flex;
justify-content: center;
align-items: center;
min-height: 80vh;
margin-left:1rem ;
margin-right:1rem ;
}
.cont{
max-height: 260px;
background-color: aliceblue;
box-shadow: 0 0 0 black;
border: 1px solid rgb(10, 10, 10);
border-radius: 20px;
padding: 10px;
transition: height 0.3s ease-in-out;
}
.cont.active{
max-height: 400px;
}
h1{
font-family: system-ui;
border-bottom: 1px solid black;
}
.cont .texts{
text-align: center;
margin: 20px 2px;
}
.cont .texts p{
margin-top: 10px;
font-weight: 700;
}
.cont .inbtn{
display: flex;
flex-direction: column;
}
.cont .inbtn input{
padding: 5px 10px;
height: 25px;
font-size: 17px;
border-radius: 8px;
border: 1px solid black;
}
.cont .inbtn button {
border-radius: 8px;
padding: 5px 10px;
height: 35px;
margin-top: 15px;
background-color: #42c4c4;
font-size: 17px;
text-align: center;
cursor: pointer;
border: 1px solid black;
}
.cont .inbtn button:hover{
background-color: aquamarine;
}
.qrimg {
display: flex;
justify-content: center;
align-items: center;
margin-top: 15px;
padding: 10px 0px;
cursor: pointer;
opacity: 0;
border: 1px solid black;
border-radius: 18px;
pointer-events: none;
}
.cont.active .qrimg
{
opacity: 1;
pointer-events:auto;
transition: opacity 1s ease;
}
.qrimg img{
height: 170px;
width: 170px;
}