-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
72 lines (63 loc) · 1.16 KB
/
Copy pathstyles.css
File metadata and controls
72 lines (63 loc) · 1.16 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
:root {
color-scheme: dark;
font-family: Arial, sans-serif;
background: #071016;
color: #e8f7ff;
}
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
}
.shell {
width: min(920px, 92vw);
}
.card {
border: 1px solid rgba(120, 220, 255, 0.22);
background: linear-gradient(135deg, rgba(12, 28, 40, 0.95), rgba(5, 10, 18, 0.95));
border-radius: 24px;
padding: 32px;
box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.eyebrow {
color: #78dcff;
text-transform: uppercase;
letter-spacing: 0.18em;
font-size: 12px;
}
h1 {
margin: 0 0 16px;
font-size: clamp(32px, 5vw, 56px);
}
label {
display: block;
margin-top: 24px;
margin-bottom: 8px;
}
input {
width: 100%;
box-sizing: border-box;
padding: 14px;
border-radius: 12px;
border: 1px solid rgba(120, 220, 255, 0.28);
background: #0c1c28;
color: #e8f7ff;
}
button {
margin-top: 16px;
padding: 12px 18px;
border: 0;
border-radius: 12px;
background: #78dcff;
color: #071016;
font-weight: 700;
cursor: pointer;
}
.output {
margin-top: 24px;
min-height: 48px;
border-radius: 12px;
padding: 16px;
background: rgba(120, 220, 255, 0.08);
}