-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (57 loc) · 1.2 KB
/
style.css
File metadata and controls
64 lines (57 loc) · 1.2 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
body {
margin: 0;
padding: 0;
overflow: hidden;
background: #fffbea;
font-family: sans-serif;
height: 100vh;
color: #444;
}
#login, #content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #fffaf0;
padding: 30px;
border-radius: 15px;
box-shadow: 0 3px 15px rgba(0,0,0,0.1);
text-align: center;
z-index: 10;
}
input[type="password"] {
padding: 10px;
font-size: 16px;
border: 2px solid #fdd835;
border-radius: 8px;
margin-top: 10px;
}
button {
margin-top: 15px;
padding: 10px 20px;
background-color: #fdd835;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
color: #333;
}
h1 {
color: #f4b400;
}
#content {
display: none;
z-index: 10;
}
.flower {
position: absolute;
pointer-events: none;
user-select: none;
opacity: 0;
transform: scale(0);
transition: transform 1s ease-out, opacity 1s ease-out;
}
.flower.show {
opacity: 1;
transform: scale(1);
}