-
Notifications
You must be signed in to change notification settings - Fork 0
/
qr.css
80 lines (73 loc) · 1.37 KB
/
qr.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
*{
margin:0;
padding:0;
box-sizing: border-box;
font-family:'Lato';
letter-spacing: 1px;
}
.container{
width: 100%;
background-color: #bcef2e;
height: 100vh;
text-align:center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1{
font-size: 35px;
color: #e92121;
}
.box{
width: 1000px;
padding: 20px 0;
display: flex;
justify-content: center;
align-items:center;
}
input{
width: 400px;
height: 60px;
padding: 15px;
font-size: 22px;
margin: 30px;
text-align: center;
background-color: #FFE3E3;
border-radius: 7px;
border: 3px solid #4B6587;
outline: none;
}
#input::placeholder{
color: #4B6587;
}
button{
font-size:15px;
padding: 8px 20px;
font-weight: 500;
cursor: pointer;
transition: 0.4s;
border-radius: 25px;
background-color: #ff4a4a;
border: 2px solid #C9CCD5;
color: #fff;
outline: none;
}
#loading{
display:none;
width: 40px;
height: 40px;
margin-bottom: 30px;
border-radius: 50%;
border: 6px solid #ffffff26;
border-top: 5px solid #fff;
animation: loading 1s linear innfinite;
}
@keyframes loading{
from{
transform: rotate(0deg);
}
to{
transform: rotate(360deg);
}
}