-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (52 loc) · 938 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
48
49
50
51
52
53
54
55
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
background:#ececec;
font-family:Arial,Helvetica,sans-serif;
display:flex;
align-items:center;
justify-content:center;
height:100vh;
}
.container{
padding:40px 60px;
background:#fff;
display:flex;
align-items:center;
border:5px solid rgba(190,190,190,0);
box-shadow:0015px rgba(100,100,100,0.3);
flex-direction:column;
}
.input{
padding:12px 20px;
width:300px;
margin-bottom:20px;
}
button{
padding:12px 20px;
margin-bottom:20px;
border:0;
background:#485696;
color:#fff;
text-transform:uppercase;
font-weight:700;
letter-spacing:2px;
}
#qr-image{
display:none;
}
img{
margin-bottom:20px;
}
.whatsapp {
width: 50px;
height: 50px;
margin: 0 auto;
text-align: center;
border: 3px solid #008000;
border-radius: 50%;
transition-duration: 0.5s;
}