-
Notifications
You must be signed in to change notification settings - Fork 2
/
otp.css
60 lines (56 loc) · 1.12 KB
/
otp.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
body{
background-color: slategray;
}
#container {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
height: 400px;
width: 620px;
margin-left: auto;
margin-right: auto;
margin-top: 140px;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
border-radius: 10px;
background-color: white;
padding-left:10px;
}
img{
height: 17px;
cursor: pointer;
width: 17px;
margin-left: 4px;
margin-top: 15px;
}
#form input{
padding: 9px;
width: 95%;
margin-bottom: 20px;
}
#form a{
color: black;
font-size: 13px;
text-decoration: none;
}
button{
display: flex;
margin-left: auto;
margin-right: 18px;
justify-content: center;
margin-top: 120px;
padding: 10px;
border-radius: 20px;
background-color: mediumslateblue;
border: 1px solid white ;
border: none;
width: 80px;
color: white;
}
button:hover{
cursor: pointer;
}
#form a:hover{
text-decoration: underline;
}
#form input:hover {
border: 1px solid blue;
/* border: none; */
}