-
Notifications
You must be signed in to change notification settings - Fork 966
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (69 loc) · 1.17 KB
/
style.css
File metadata and controls
69 lines (69 loc) · 1.17 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
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: system-ui, sans-serif;
width: 380px;
background: #0f0f1e;
color: #e0e0e0;
}
.container { padding: 16px; }
h2 {
text-align: center;
margin-bottom: 16px;
color: #00d0ff;
}
input, textarea, button {
width: 100%;
padding: 10px;
margin: 8px 0;
border: none;
border-radius: 8px;
font-size: 14px;
}
input, textarea {
background: #16213e;
color: #fff;
}
button {
background: #00d0ff;
color: #000;
font-weight: bold;
cursor: pointer;
}
button:hover { background: #00a8cc; }
.search { margin: 16px 0 8px; }
ul {
list-style: none;
max-height: 420px;
overflow-y: auto;
padding-right: 8px;
}
li {
background: #16213e;
padding: 12px;
margin: 8px 0;
border-radius: 8px;
position: relative;
}
.code {
background: #0d0d1a;
padding: 10px;
border-radius: 6px;
margin: 8px 0;
white-space: pre-wrap;
font-family: 'Courier New', monospace;
font-size: 12px;
color: #8ff0a4;
}
.delete {
position: absolute;
top: 8px;
right: 8px;
background: #ff4444;
color: white;
border: none;
width: 26px;
height: 26px;
border-radius: 50%;
cursor: pointer;
font-size: 16px;
}