-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (70 loc) · 1.67 KB
/
index.html
File metadata and controls
78 lines (70 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
.watch-ui {
width: 35mm;
height: 41mm;
border-radius: 30%;
background-color: #0f1524;
font-size: 9px;
font-weight: bold;
line-height: 1.3;
color: #fff;
padding: 8px;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: flex-start;
white-space: pre-wrap;
word-break: break-word;
}
.instagram-icon {
display: flex;
align-items: center;
justify-content: start;
margin-bottom: 6px;
height: 30%;
gap: 15px;
border-bottom: #fff 1px solid;
}
.instagram-icon img {
width: 25px;
height: 25px;
margin-left: 5px;
}
.instagram-icon span {
font-size: 11px;
font-weight: 600;
}
.message {
white-space: pre-wrap;
word-break: break-word;
text-align: left;
user-select: text;
}
.reference-image {
width: 35mm;
height: 41mm;
margin-top: 15px;
border-radius: 30%;
border: 1px solid #ccc;
}
</style>
</head>
<body>
<div class="watch-ui">
<div class="instagram-icon">
<!-- Font Awesome Instagram Icon -->
<i class="fab fa-instagram"></i>
</a>
<span>Instagram</span>
</div>
<pre class="message">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Quas qui dignissimos non accusamus sint sapiente, similique commodi excepturi
</pre>
</div>
<!-- Link to Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</body>