-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathotp1.css
44 lines (40 loc) · 815 Bytes
/
otp1.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
body{
background-color: #565656;
font-family: Clear Sans,Helvetica Neue,Helvetica,Arial,sans-serif;
}
#container{
width: 23%;
margin: auto;
display: grid;
justify-content: center;
align-items: center;
padding: 30px;
border-radius: 10px;
margin-top: 100px;
background-color: white;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
input{
display: block;
margin-bottom: 40px;
height: 30px;
margin-top: 50px;
border-radius: 5px;
font-size: 20px;
}
button{
width: 50%;
margin: auto;
height: 40px;
color: white;
background-color: #ff6f61;
border: 0;
border-radius: 5px;
font-size: 20px;
margin-bottom: 50px;
}
button:hover{
color: red;
cursor: pointer;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}