-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
124 lines (109 loc) · 2.09 KB
/
styles.css
File metadata and controls
124 lines (109 loc) · 2.09 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background-color: #121212;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
position: relative;
}
.container {
background: #1e1e1e;
padding: 25px;
border-radius: 10px;
box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
text-align: center;
width: 320px;
}
h2 {
margin-bottom: 15px;
font-size: 22px;
}
input {
width: 100%;
padding: 12px;
margin: 10px 0;
background: #333;
border: 1px solid #555;
border-radius: 5px;
color: white;
text-align: center;
font-size: 16px;
}
button {
width: 100%;
padding: 12px;
background: #6200ea;
color: white;
border: none;
cursor: pointer;
margin-top: 10px;
border-radius: 8px;
font-size: 16px;
transition: 0.3s;
}
button:hover {
background: #3700b3;
}
.notification {
position: fixed;
top: 20px;
right: 20px;
background: rgba(255, 0, 0, 0.9);
color: white;
padding: 12px 20px;
border-radius: 5px;
font-weight: bold;
box-shadow: 0px 0px 10px rgba(255, 0, 0, 0.5);
display: flex;
align-items: center;
animation: fadeIn 0.5s ease-in-out;
z-index: 1000;
}
.hidden {
display: none;
}
.exclamation {
font-size: 20px;
margin-right: 10px;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}
.logout-button {
display: inline-block;
padding: 10px 20px;
background-color: #6200ea;
color: white;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background 0.3s ease;
}
.logout-button:hover {
background-color: #3700b3;
}
.footer {
position: absolute;
bottom: 20px;
text-align: center;
font-size: 14px;
color: #bbb;
width: 100%;
}
.footer a {
color: white;
text-decoration: none;
font-weight: bold;
}
.footer a:hover {
text-decoration: underline;
}