-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (70 loc) · 1.6 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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
padding: 0px;
margin: 0px;
font-family: 'Poppins', sans-serif;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background:linear-gradient(135deg, #1A2980, #26D0CE);
}
.wrapper {
background-color: white;
width: 350px;
padding: 60px 50px;
border-radius: 10px;
display: flex;
flex-direction: column;
}
.wrapper p{
font-size: 16px;
font-weight: bold;
margin-bottom: 5px;
}
.wrapper input{
padding: 10px;
border: 1px solid #dcdcdc;
margin-bottom: 10px;
border-radius: 2px;
outline: none;
}
.wrapper button{
background-image: linear-gradient(to right, #1A2980 0%, #26D0CE 51%, #1A2980 100%);
border: #fff;
margin: 10px;
padding: 15px 45px;
text-align: center;
text-transform: uppercase;
transition: 0.5s;
background-size: 200% auto;
color: white;
box-shadow: 0 0 20px #eee;
border-radius: 10px;
display: block;
cursor: pointer;
}
.wrapper button:hover{
background-position: right center; /* change the direction of the change here */
color: #fff;
text-decoration: none;
}
.qrcode-wrap{
display: flex;
flex-direction: column;
align-items: center;
margin-top: 40px;
transition: .5s all;
}
#qrcode-box{
display: none;
}
.qrcode-wrap img{
width: 200px;
height: 200px;
margin-bottom: 20px;
padding: 10px;
border: 1px solid#dcdcdc;
}