-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (84 loc) · 1.89 KB
/
Copy pathstyle.css
File metadata and controls
90 lines (84 loc) · 1.89 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
/* style.css - dark, modern look */
:root{
--bg: #0b0b0d;
--panel: #141416;
--muted: #9aa0a6;
--accent: #ff4081;
--success: #00e676;
}
*{box-sizing:border-box}
body{
margin:0;
font-family:Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
background:linear-gradient(180deg,#070708 0%, #0b0b0d 100%);
color:#e6e6e6;
display:flex;
justify-content:center;
padding:30px;
}
.topbar{
position:fixed;
top:0;
left:0;
right:0;
height:60px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 30px;
background:rgba(10,10,10,0.6);
border-bottom:1px solid rgba(255,255,255,0.03);
}
.topbar .brand{
font-weight:700;
color:var(--accent);
font-size:20px;
}
.topbar nav a{
color:#d7d7d7;
margin-left:18px;
text-decoration:none;
font-weight:600;
}
.topbar nav a:hover{ color:var(--accent) }
.card{
width:900px;
margin-top:80px;
background:var(--panel);
border-radius:12px;
padding:30px;
box-shadow:0 8px 30px rgba(4,4,6,0.6);
}
h1{ color:var(--accent); margin:0 0 6px 0}
.lead{ color:var(--muted); margin-top:6px }
.box{ margin-top:24px; padding:18px; background:rgba(255,255,255,0.02); border-radius:8px }
.box h2{ margin:0 0 8px 0 }
label{ display:block; color:var(--muted); margin-bottom:6px; font-size:13px }
input[type="text"]{
width:100%;
padding:10px 12px;
border-radius:8px;
border:1px solid rgba(255,255,255,0.04);
background:#0f0f10;
color:#fff;
margin-bottom:10px;
}
button{
background:var(--accent);
border:none;
padding:10px 16px;
border-radius:8px;
color:white;
font-weight:700;
cursor:pointer;
}
button:hover{ filter:brightness(1.06) }
.output{ margin-top:12px }
.included-box{
background:#0b0b0b;
padding:8px;
border-left:4px solid var(--accent);
margin-bottom:8px;
color:var(--muted);
}
footer.note{ margin-top:18px; color:var(--muted); font-size:13px }