-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
93 lines (82 loc) · 1.56 KB
/
styles.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* General Body and Layout Styles */
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #6a82fb, #fc5c7d);
color: #fff;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
background: rgba(0, 0, 0, 0.7);
padding: 30px 50px;
border-radius: 10px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
width: 100%;
max-width: 400px;
}
h1 {
font-size: 2.5rem;
margin-bottom: 20px;
}
/* Password Display Styles */
.password {
font-size: 1.8rem;
letter-spacing: 1px;
word-wrap: break-word;
background: #333;
color: #fff;
padding: 15px;
border: none;
border-radius: 8px;
margin-bottom: 20px;
width: 100%;
text-align: center;
box-sizing: border-box;
cursor: pointer;
}
.password:focus {
outline: none;
background: #444;
}
/* Button Styles */
button {
background: #ff66b2;
border: none;
color: #fff;
font-size: 1.2rem;
padding: 10px 30px;
border-radius: 30px;
cursor: pointer;
transition: background 0.3s;
}
button:hover {
background: #ff3385;
}
button:focus {
outline: none;
}
/* Footer Styles */
.footer {
margin-top: 20px;
font-size: 0.9rem;
color: #ccc;
}
a {
color: #ccc;
}
#message {
background-color: #4CAF50;
color: white;
padding: 10px;
border-radius: 5px;
font-size: 1rem;
margin-top: 20px;
transition: opacity 0.5s ease-out;
opacity: 0;
visibility: hidden;
}