-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (59 loc) · 1.31 KB
/
style.css
File metadata and controls
64 lines (59 loc) · 1.31 KB
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
@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Noto+Kufi+Arabic:wght@400;500&family=Outfit:wght@100;400&family=Poppins:ital,wght@0,300;0,400;1,700&display=swap');
/* font-family: 'Poppins', sans-serif; */
h1{
margin: 0;
}
body{
font-family: 'Poppins', sans-serif;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
/* background-image: url(); */
/* background-size: ; */
height: 100vh;
}
.otp-card{
text-align: center;
background-color: white;
border-radius: 20px;
padding: 3rem;
box-shadow: 0 10px 40px -20px black;
}
.otp-card-inputs{
margin: 30px 0;
display: grid;
gap: 30px;
justify-content: center;
grid-template-columns: repeat(5,auto);
}
.otp-card-inputs input {
width: 60px;
height: 70px;
font-size: 35px;
text-align: center;
border-radius: 20px;
border:1px solid black;
}
.otp-card-inputs input:focus{
outline: 2px solid blueviolet;
border-color: transparent;
}
.otp-card button{
background-color: blueviolet;
border: none;
padding: 15px 50px;
font-size: 18px;
color: white;
border-radius: 20px;
cursor: pointer;
margin-top: 15px;
}
.otp-card button:hover{
opacity: .9;
}
.otp-card button[disabled]{
opacity: .6;
cursor: default;
}