-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
71 lines (69 loc) · 1.13 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
71
*{
margin: 0;
padding:0;
box-sizing: border-box;
}
html,body{
width:100%;
height:100%;
background-color: rgb(40, 40, 40);
font-family: 'Poppins',sans-serif;
}
#container{
max-width: 400px;
margin:100px auto 30px;
display: flex;
flex-direction: column;
gap: 20px;
background-color: white;
align-items: left;
padding: 34px;
border-radius: 10px;
}
#data{
color: black;
}
.head{
font-size: 16px;
}
#input-data{
width: 300px;
height: 36px;
border-radius: 6px;
border: 1.5px solid grey;
outline-style: none;
padding-left: 6px;
font-size: 10px;
}
#button{
width: 300px;
height: 36px;
border-radius: 6px;
background-color: rgb(83, 83, 234);
color: white;
border: none;
}
.error{
animation: shake 0.1s linear 10;
}
#qr{
align-items: center;
padding-left: 70px;
}
@keyframes shake{
0%{
transform: translateX(0);
}
25%{
transform: translateX(-2px);
}
50%{
transform: translateX(0);
}
75%{
transform: translateX(2px);
}
100%{
transform: translateX(0);
}
}