This repository was archived by the owner on Mar 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Expand file tree
/
Copy pathstyles.css
More file actions
88 lines (63 loc) · 3.99 KB
/
styles.css
File metadata and controls
88 lines (63 loc) · 3.99 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
@font-face {
font-family: 'Aeonik';
src: url('Aeonik.woff2') format('woff2'),
url('Aeonik.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
/* Dark Mode Background */
body {
font-family: 'Aeonik', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: #121212;
color: white;
overflow: hidden;
position: relative;
}
/* Background Canvas for Animation */
#backgroundCanvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.container {
width: 90%;
max-width: 500px;
background: white;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
border-radius: 8px;
}
h1 {
font-size: 1.5em;
}
input {
margin-bottom: 10px;
}
textarea {
width: 100%;
height: 150px;
margin-top: 10px;
}
.buttons {
margin-top: 10px;
}
button {
margin: 5px;
padding: 10px;
border: none;
background: #007BFF;
color: white;
cursor: pointer;
}
button:hover {
background: #0056b3;
}