-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaceRec.css
More file actions
116 lines (97 loc) · 1.83 KB
/
Copy pathfaceRec.css
File metadata and controls
116 lines (97 loc) · 1.83 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
* {
margin: 0;
padding: 0;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body {
background-image: url(background.jpg);
background-position: right;
height: 100vh;
background-size: cover;
background-repeat: no-repeat; /* Ensure the background image does not repeat */
}
#enterPass {
width: 59%;
}
.head {
letter-spacing: 4px;
font-size: 1rem;
color: rgb(114, 114, 226);
text-align: center;
}
.buttons {
margin: auto;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 30px;
}
.buttons input,
.buttons button {
border-radius: 8px;
border: none;
margin: 8px;
background: rgb(9, 9, 76);
width: 60%;
padding: 10px;
transition: .5s;
}
.buttons input:hover,
.buttons button:hover {
background-color: rgba(240, 248, 255, 0.347);
letter-spacing: 2px;
}
.content {
width: 90%;
margin: auto;
height: 100%;
transition: .5s;
}
.content:hover {
background-color: rgba(250, 235, 215, 0);
}
.hide {
display: none;
}
#change {
width: 80%;
margin-left: 30%;
}
#accept {
margin-left: 90px;
display: flex;
width: 100%;
}
#accept button {
width: 20%;
}
#newPass {
width: 60%;
}
#confirm:hover {
background: green;
}
#cancel:hover {
background: red;
}
.faceRec {
width: 50%;
margin: auto;
height: 60%;
background: #1b4ac16e;
border: 5px solid rgb(14, 14, 100);
}
input,
button {
color: bisque;
font-weight: 800;
}
p {
font-weight: 900;
}
video {
width: 100%;
height: 100%;
}