forked from our-websites/Spook-V1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate.css
More file actions
64 lines (57 loc) · 1 KB
/
create.css
File metadata and controls
64 lines (57 loc) · 1 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
/* create.css */
body {
background-color: #0d0d0d;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #f1f1f1;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
form {
background: #1a1a1a;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.6);
width: 100%;
max-width: 400px;
}
h2 {
text-align: center;
margin-bottom: 1.5rem;
}
input[type="text"],
input[type="file"] {
width: 100%;
padding: 0.75rem;
margin-bottom: 1rem;
border: none;
border-radius: 5px;
background: #2a2a2a;
color: #f1f1f1;
}
input::placeholder {
color: #999;
}
button {
width: 100%;
padding: 0.75rem;
background-color: #6c5ce7;
border: none;
border-radius: 5px;
color: #fff;
font-weight: bold;
cursor: pointer;
transition: background-color 0.2s ease-in-out;
}
button:hover {
background-color: #4834d4;
}
.note {
font-size: 0.85rem;
color: #aaa;
text-align: center;
margin-top: 1rem;
}