-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
74 lines (70 loc) · 1.31 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
72
73
74
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: comic sans ms;
}
body{
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background: #1bb295;
}
.wrapper{
width: 400px;
background: #fff;
border-radius: 10px;
}
.wrapper h1{
font-size: 25px;
font-weight: 500;
padding: 20px 25px;
text-align: center;
border-bottom: 1px solid #ccc;
}
.wrapper .content{
margin: 25px 25px 35px;
}
.content .inputs{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.content .typing-text{
opacity: 0;
z-index: -999;
position: absolute;
}
.inputs input{
height: 57px;
width: 56px;
margin: 4px;
border-radius: 5px;
background: none;
border: 1px solid #b5b5b5;
font-weight: 500;
font-size: 24px;
color: #1bb295;
font-weight: bolder;
text-align: center;
text-transform: uppercase;
}
.inputs input:first-child{
margin: 0px;
}
.details p{
font-size: 19px;
margin-bottom: 10px;
}
.content .reset-btn{
width: 100%;
cursor: pointer;
outline: none;
border: none;
color: #fff;
font-size: 17px;
padding: 15px 0;
background: #1bb295;
border-radius: 5px;
}