-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- iMessaging from https://github.com/ReagentX/imessage-exporter - Link to hub
- Loading branch information
Showing
5 changed files
with
232 additions
and
5 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
.imessages-raw { | ||
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; | ||
} | ||
|
||
.imessages-raw p { | ||
margin: 0px !important; | ||
} | ||
|
||
.imessages-raw .message { | ||
margin: 1%; | ||
overflow-wrap: break-word; | ||
} | ||
|
||
.imessages-raw .message .sent.iMessage { | ||
background-color: #1982FC; | ||
} | ||
|
||
.imessages-raw .message .sent { | ||
color: white !important; | ||
border-radius: 25px; | ||
padding: 15px; | ||
margin-left: auto; | ||
margin-right: 0; | ||
max-width: 60%; | ||
width: fit-content; | ||
} | ||
|
||
.imessages-raw .message .received { | ||
background-color: #d8d8d8; | ||
color: black; | ||
border-radius: 25px; | ||
padding: 15px; | ||
margin-right: auto; | ||
margin-left: 0; | ||
max-width: 60%; | ||
width: fit-content; | ||
} | ||
|
||
.imessages-raw span.timestamp { | ||
opacity: 60%; | ||
} | ||
|
||
.imessages-raw span.sender { | ||
opacity: 100%; | ||
} | ||
|
||
.imessages-raw span.bubble { | ||
white-space: pre-wrap; | ||
overflow-wrap: break-word; | ||
} | ||
|
||
.imessages-raw .app { | ||
background: white; | ||
border-radius: 25px; | ||
} | ||
|
||
.imessages-raw .app a { | ||
text-decoration: none; | ||
} | ||
|
||
.imessages-raw .app_header { | ||
border-top-left-radius: 25px; | ||
border-top-right-radius: 25px; | ||
color: black; | ||
} | ||
|
||
.imessages-raw .app_header img { | ||
border-top-left-radius: 25px; | ||
border-top-right-radius: 25px; | ||
margin-left: auto; | ||
margin-right: auto; | ||
width: 100%; | ||
} | ||
|
||
.imessages-raw .app_header .name { | ||
color: black; | ||
font-weight: 600; | ||
padding-top: 1%; | ||
padding-bottom: 1%; | ||
padding-left: 15px; | ||
padding-right: 15px; | ||
overflow: auto; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<div class="imessages-raw"> | ||
<div class="message"> | ||
<div class="sent iMessage"> | ||
<p><span class="timestamp">Just then</span> | ||
<span class="sender">Me</span> | ||
</p> | ||
<hr> | ||
<div class="message_part"> | ||
<span class="bubble">❤️</span> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="message"> | ||
<div class="sent iMessage"> | ||
<p><span class="timestamp">Now</span> | ||
<span class="sender">Me</span> | ||
</p> | ||
<hr> | ||
<div class="message_part"> | ||
<div class="app"><a href="https://github.com/eidorb"> | ||
<div class="app_header"><img src="_static/ambiambigram.svg"> | ||
<div class="name">😜</div> | ||
</div> | ||
</a></div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
# brodie.id.au | ||
|
||
This is my website. | ||
|
||
```{toctree} | ||
:hidden: | ||
blog | ||
``` | ||
|
||
This is my website. | ||
|
||
|
||
```{raw} html | ||
:file: convo.html | ||
``` |