-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
133 lines (133 loc) · 2.31 KB
/
index.css
File metadata and controls
133 lines (133 loc) · 2.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
* {
margin: 0;
padding: 0;
text-align: center;
font-family: cursive;
}
body {
background-color: blanchedalmond;
}
header > h2 {
color: green;
font-size: 3rem;
margin: 20px 0;
cursor: pointer;
transition: transform 5s;
}
header > h2:hover {
transform: rotate(360deg);
}
#password {
margin-top: 20vh;
font-size: larger;
}
#intraction {
width: 20%;
margin: auto;
display: flex;
flex-direction: column;
}
#pin {
height: 6vh;
background-color: whitesmoke;
border: 0;
outline: 0;
font-size: larger;
}
#confirmbtn {
margin: 20px auto;
padding: 14px 50px;
background-color: whitesmoke;
cursor: pointer;
font-size: medium;
border: 0;
box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
#confirmbtn:hover {
background-color: black;
color: white;
}
#btn {
width: 20%;
margin: auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
margin-top: 20px;
}
.numbtn {
height: 10vh;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
border-radius: 10px;
cursor: pointer;
box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
#resetbtn {
background-color: transparent;
cursor: pointer;
font-size: medium;
border: 0;
border-radius: 10px;
box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
#getuser-btn {
margin-top: 30px;
padding: 30px 60px;
border: 0;
background-color: green;
color: white;
cursor: pointer;
font-size: 1rem;
font-weight: bold;
border-radius: 50%;
}
#getuser-btn:hover {
background-color: white;
color: black;
}
#container {
padding: 30px 100px 50px;
min-width: 25vw;
position: fixed;
top: 60%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 120px 0px;
line-height: 2;
}
.dob {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
text-transform: capitalize;
}
.mail,
.usepass,
.ctcode,
.stco {
display: flex;
align-items: center;
justify-content: center;
gap: 30px;
}
.img-div {
border: 12px solid blanchedalmond;
border-radius: 50%;
width: 150px;
height: 150px;
margin: -120px auto 40px;
}
.img-div img {
border-radius: 50%;
width: 150px;
height: 150px;
}
.img-div img:hover {
scale: 1.2;
}