-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsushi-pos-export.css
More file actions
175 lines (149 loc) · 2.67 KB
/
Copy pathsushi-pos-export.css
File metadata and controls
175 lines (149 loc) · 2.67 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500&display=swap');
* {
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
font-size: 10.5pt;
line-height: 1.75;
color: #1a1a1a;
max-width: 680px;
margin: 0 auto;
}
h1 {
font-size: 26pt;
font-weight: 700;
margin: 0 0 6px 0;
color: #111;
letter-spacing: -0.5px;
}
h2 {
font-size: 14pt;
font-weight: 600;
margin: 36px 0 10px 0;
color: #111;
padding-bottom: 6px;
border-bottom: 2px solid #e8e8e8;
letter-spacing: -0.2px;
}
h3 {
font-size: 11.5pt;
font-weight: 600;
margin: 22px 0 8px 0;
color: #222;
}
p {
margin: 0 0 12px 0;
}
a {
color: #b91c1c;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul, ol {
margin: 0 0 14px 0;
padding-left: 22px;
}
li {
margin-bottom: 5px;
}
li > strong {
color: #111;
}
code {
font-family: 'JetBrains Mono', 'Courier New', monospace;
font-size: 8.5pt;
background: #f3f3f3;
padding: 2px 5px;
border-radius: 3px;
color: #b91c1c;
}
pre {
background: #f3f3f3;
padding: 14px 16px;
border-radius: 6px;
overflow-x: auto;
margin: 0 0 14px 0;
}
pre code {
background: none;
padding: 0;
color: #1a1a1a;
font-size: 8.5pt;
}
img.desktop {
max-width: 88%;
height: auto;
display: block;
margin: 18px auto 24px auto;
border-radius: 8px;
border: 1px solid #e0e0e0;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
}
img.mobile {
max-width: 32%;
height: auto;
display: block;
margin: 18px auto 24px auto;
border-radius: 12px;
border: 1px solid #e0e0e0;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
}
strong {
font-weight: 600;
color: #111;
}
em {
font-style: italic;
color: #444;
}
hr {
border: none;
border-top: 1px solid #e8e8e8;
margin: 28px 0;
}
/* Header block at top of document */
.doc-header {
margin-bottom: 28px;
padding-bottom: 20px;
border-bottom: 3px solid #b91c1c;
}
.demo-video-link {
margin: 10px 0 6px 0;
}
.demo-video-link a {
font-size: 16pt;
font-weight: 700;
color: #b91c1c;
text-decoration: underline;
text-underline-offset: 3px;
letter-spacing: -0.2px;
}
.doc-meta {
font-size: 9.5pt;
color: #555;
margin-top: 4px;
}
.doc-meta a {
color: #b91c1c;
text-decoration: underline;
text-underline-offset: 2px;
font-weight: 500;
}
.tech-pills {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin: 10px 0 0 0;
}
.tech-pill {
font-size: 8pt;
font-family: 'JetBrains Mono', monospace;
background: #fef2f2;
color: #b91c1c;
border: 1px solid #fecaca;
padding: 2px 8px;
border-radius: 3px;
}