-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
86 lines (75 loc) · 1.22 KB
/
Copy pathstyles.css
File metadata and controls
86 lines (75 loc) · 1.22 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
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
font-family: Arial, "Microsoft YaHei", sans-serif;
background: #f4f6f8;
color: #1f2937;
}
.app {
min-height: 100vh;
display: grid;
place-items: center;
padding: 24px;
}
.panel {
width: min(620px, 100%);
background: #ffffff;
border: 1px solid #d7dee8;
border-radius: 8px;
padding: 32px;
box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.eyebrow {
margin: 0 0 8px;
color: #0f766e;
font-size: 14px;
font-weight: 700;
}
h1 {
margin: 0;
font-size: 32px;
}
.intro {
margin: 12px 0 24px;
color: #526173;
line-height: 1.6;
}
.note-form {
display: flex;
gap: 10px;
}
.note-form input {
flex: 1;
min-width: 0;
border: 1px solid #c8d1dc;
border-radius: 6px;
padding: 11px 12px;
font-size: 16px;
}
.note-form button {
border: 0;
border-radius: 6px;
padding: 0 18px;
background: #2563eb;
color: #ffffff;
font-weight: 700;
cursor: pointer;
}
.clear-button {
margin-top: 12px;
border: 1px solid #c8d1dc;
border-radius: 6px;
padding: 9px 14px;
background: #ffffff;
color: #374151;
font-weight: 700;
cursor: pointer;
}
.notes {
margin: 24px 0 0;
padding-left: 20px;
line-height: 1.8;
}