-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (50 loc) · 821 Bytes
/
style.css
File metadata and controls
57 lines (50 loc) · 821 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
body {
margin: 0;
font-family: "Segoe UI", sans-serif;
display: flex;
background: #0f172a;
color: white;
}
/* Sidebar */
.sidebar {
width: 240px;
background: #020617;
padding: 20px;
text-align: center;
}
.logo {
width: 90px;
margin-bottom: 10px;
}
/* Main */
.main {
flex: 1;
padding: 40px;
}
textarea {
width: 100%;
height: 120px;
padding: 12px;
border-radius: 8px;
border: none;
font-size: 15px;
}
select {
padding: 8px;
margin-bottom: 10px;
}
button {
background: #22c55e;
padding: 10px 22px;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
}
.card {
margin-top: 20px;
background: #111827;
padding: 20px;
border-radius: 12px;
box-shadow: 0 0 10px rgba(34,197,94,0.3);
}