forked from our-websites/Spook-V1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit.css
More file actions
65 lines (57 loc) · 961 Bytes
/
edit.css
File metadata and controls
65 lines (57 loc) · 961 Bytes
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
body {
font-family: Arial, sans-serif;
background: #f9f9f9;
padding: 40px;
margin: 0;
color: #333;
}
.container {
max-width: 900px;
margin: auto;
display: flex;
gap: 40px;
flex-wrap: wrap;
}
form {
flex: 1;
background: white;
padding: 25px;
border-radius: 8px;
box-shadow: 0 0 8px rgba(0,0,0,0.05);
}
form input, form textarea {
width: 100%;
padding: 10px;
margin-top: 5px;
margin-bottom: 20px;
border-radius: 5px;
border: 1px solid #ccc;
}
form button {
padding: 10px 20px;
background: #5b6dfa;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
form button:hover {
background: #4b5bd3;
}
.preview {
flex: 1;
background: white;
padding: 25px;
border-radius: 8px;
box-shadow: 0 0 8px rgba(0,0,0,0.05);
}
.profile-preview {
text-align: center;
}
.profile-preview img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 15px;
}