-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (52 loc) · 991 Bytes
/
style.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
#popup-content {
width: 300px;
padding: 20px;
}
#current-password-input, #new-password-input, #password-input {
width: 100%;
padding: 8px;
margin-bottom: 10px;
}
#unlock-button, #set-password-button {
width: 100%;
padding: 8px;
}
#profile-locker-overlay {
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(0, 0, 0, 0.8);
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
opacity: 1;
transition: opacity 0.5s ease;
}
#profile-locker-overlay.fade-out {
opacity: 0;
}
#profile-locker-overlay div {
text-align: center;
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
#profile-locker-password {
padding: 8px;
margin-bottom: 10px;
}
#profile-locker-unlock {
padding: 8px;
}
#profile-locker-message {
margin-top: 10px;
color: red;
}
body.profile-locker-blur {
filter: blur(5px);
transition: filter 0.3s ease;
}