-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathline.html
More file actions
27 lines (26 loc) · 1018 Bytes
/
line.html
File metadata and controls
27 lines (26 loc) · 1018 Bytes
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
<svg fill="none" viewBox="0 0 600 110" width="600" height="110" xmlns="www.w3.org">
<foreignObject width="100%" height="100%">
<div xmlns="www.w3.org">
<style>
/* Import official Ubuntu font */
@import url('fonts.googleapis.com');
.ubuntu-terminal {
font-family: 'Ubuntu Mono', 'Courier New', monospace;
background-color: #300a24; /* Canonical Aubergine */
color: #ffffff;
padding: 15px;
border-radius: 6px;
font-size: 16px;
height: 80px;
border: 1px solid #5E2750;
}
.prompt { color: #87ff5f; font-weight: bold; }
.path { color: #5fafff; font-weight: bold; }
</style>
<div class="ubuntu-terminal">
<div><span class="prompt">user@ubuntu</span>:<span class="path">~</span>$ sudo apt install ubuntu-style</div>
<div style="color: #aaaaaa; margin-top: 4px;">Reading package lists... Done</div>
</div>
</div>
</foreignObject>
</svg>