Skip to content

Commit 687b1f7

Browse files
Martin BrignallMartin Brignall
authored andcommitted
Upodates and changes
Fixed some alignment and formatting issues in css which allowed simplification in the posts/content.
1 parent 6de9b05 commit 687b1f7

4 files changed

Lines changed: 72 additions & 77 deletions

File tree

assets/stylesheet.css

Lines changed: 66 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -2,46 +2,82 @@
22
html, body {
33
font-family: 'Fira Mono', monospace;
44
background-color: #F0E8DA;
5-
margin: 0 auto;
6-
padding: 10px;
5+
margin: auto;
76
}
87

98
/* Mobile Devices */
109
@media (max-width: 480px) {
1110
body {
1211
width: 90%;
12+
padding: 0px;
1313
}
1414
}
1515

1616
/* Low resolution Tablets and iPads */
1717
@media (min-width: 481px) and (max-width: 767px) {
1818
body {
1919
width: 90%;
20+
padding: 0px;
2021
}
2122
}
2223

2324
/* Tablets iPads (Portrait) */
2425
@media (min-width: 768px) and (max-width: 1024px){
2526
body {
2627
width: 90%;
28+
padding: 0px;
2729
}
2830
}
2931

3032
/* Laptops and Desktops */
3133
@media (min-width: 1025px) and (max-width: 1280px){
3234
body {
3335
width: 80%;
36+
padding: 10px;
3437
}
3538
}
3639

3740
/* Big boi Monitors */
3841
@media (min-width: 1281px) {
3942
body {
4043
width: 70%;
41-
44+
padding: 10px;
4245
}
4346
}
4447

48+
div.top {
49+
border-bottom: 1px solid black;
50+
padding: 10px;
51+
text-align: center;
52+
}
53+
54+
h1.logo {
55+
margin: 0 0 0 0;
56+
}
57+
58+
/* --- Postamble/Footer Styling --- */
59+
.postamble {
60+
border-top: 1px solid #4c566a;
61+
font-size: 0.9em;
62+
color: #616e88;
63+
}
64+
65+
66+
.postamble p {
67+
margin: 0;
68+
text-align: center !important;
69+
}
70+
71+
.todo.TODO {
72+
background-color: #e79686;
73+
color: #3b4252 !important;
74+
font-weight: bold;
75+
border: 1px solid #dcdccc;
76+
padding: 1px;
77+
border-radius: 4px;
78+
font-size: 0.6em;
79+
}
80+
4581
.status {
4682
background-color: #D5E2E7;
4783
}
@@ -146,15 +182,14 @@ ul {
146182
code {
147183
background-color: #a89bb9;
148184
padding: 2px 2px;
149-
border-radius: 4px;
150185
}
151186

152187
/* Code Block */
153188
pre {
154189
background-color: #2e3440;
155190
color: #dcdccc;
156191
padding: 10px;
157-
border-radius: 8px;
192+
border-radius: 0px;
158193
overflow: auto;
159194
font-family: 'Fira Mono', monospace;
160195
font-size: 0.9em;
@@ -166,7 +201,7 @@ ul {
166201
background-color: #3b4252;
167202
border: 1px solid #4c566a;
168203
padding: 10px;
169-
border-radius: 8px;
204+
border-radius: 0px;
170205
overflow: auto;
171206
white-space: pre-wrap;
172207
word-wrap: break-word;
@@ -202,56 +237,33 @@ ul {
202237
margin-bottom: 1em;
203238
}
204239

205-
div.top {
206-
border-top: 1px solid black;
207-
border-bottom: 1px solid black;
208-
padding: 10px;
209-
text-align: center;
210-
}
211240

212-
h1.logo {
213-
margin: 0 0 0 0;
241+
.todo.TODO {
242+
background-color: #ccddcd;
243+
color: #3b4252 !important;
244+
font-weight: bold;
245+
border: 1px solid #dcdccc;
246+
padding: 1px;
247+
border-radius: 4px;
248+
font-size: 0.6em;
214249
}
215-
216-
/* --- Postamble/Footer Styling --- */
217-
.postamble {
218-
border-top: 1px solid #4c566a;
219-
font-size: 0.9em;
220-
color: #616e88;
250+
251+
.todo.STARTED {
252+
background-color: #ebcb8b;
253+
color: #3b4252 !important;
254+
font-weight: bold;
255+
border: 1px solid #dcdccc;
256+
padding: 1px;
257+
border-radius: 4px;
258+
font-size: 0.6em;
221259
}
222260

223-
224-
.postamble p {
225-
margin: 0;
226-
text-align: center !important;
261+
.todo.DONE {
262+
background-color: #a3be8c;
263+
color: #3b4252 !important;
264+
font-weight: bold;
265+
border: 1px solid #dcdccc;
266+
padding: 1px;
267+
border-radius: 4px;
268+
font-size: 0.6em;
227269
}
228-
229-
.todo.TODO {
230-
background-color: #e79686;
231-
color: #3b4252 !important;
232-
font-weight: bold;
233-
border: 1px solid #dcdccc;
234-
padding: 1px;
235-
border-radius: 4px;
236-
font-size: 0.6em;
237-
}
238-
239-
.todo.STARTED {
240-
background-color: #ebcb8b;
241-
color: #3b4252 !important;
242-
font-weight: bold;
243-
border: 1px solid #dcdccc;
244-
padding: 1px;
245-
border-radius: 4px;
246-
font-size: 0.6em;
247-
}
248-
249-
.todo.DONE {
250-
background-color: #a3be8c;
251-
color: #3b4252 !important;
252-
font-weight: bold;
253-
border: 1px solid #dcdccc;
254-
padding: 1px;
255-
border-radius: 4px;
256-
font-size: 0.6em;
257-
}

content/about.org

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88

99
During the day I work as a Security engineer in an incident response team. When not blocking attackers and analysing threats I can be found playing guitar.
1010

11-
@@html:<div style="clear: both;"></div>@@
12-
1311
* Music things
1412

1513
I am working on music for live performance hopefully before the end of the year (more on that soon).
@@ -25,7 +23,7 @@ I enjoy exploring blues and post-rock, metal and sub-genres of. I have a backgro
2523

2624
Here is a neat (I think) playlist of some of my faves:
2725

28-
@@html:<iframe style="border-radius:12px" src="https://open.spotify.com/embed/playlist/0NarSJ8utPoOog9nIDMN2n?utm_source=generator&theme=0" width="100%" height="152" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>@@
26+
@@html:<iframe src="https://open.spotify.com/embed/playlist/0NarSJ8utPoOog9nIDMN2n?utm_source=generator&theme=0" width="100%" height="152" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>@@
2927

3028
* Linux things
3129

content/books.org

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#+title: Book Reviews
22
#+author: mbrignall
33
#+date: <2024-12-31>
4+
#+todo: TODO STARTED | DONE
45

56
* To Anyone Who Ever Asks: The Life, Music, and Mystery of Connie Converse :music:folklore:
67

@@ -13,8 +14,6 @@ Connie Converse is an very interesting character, and this book gives a really d
1314

1415
There are some surprising moments and a few theories on her disappearance that leaves you with questions. Overall I thought the book was well researched and is a great introduction to the world of Connie Converse.
1516

16-
@@html:<div style="clear: both;"></div>@@
17-
1817
* Code: The Hidden Language of Computer Hardware and Software :computer:science:technology:
1918

2019
| Author | Charles Petzold |
@@ -47,7 +46,7 @@ I listened to this as an audiobook read by Gary himself and this made the connec
4746

4847
Gary is clearly a very smart person. Someone who not only can convey complex ideas and trading insider techniques but also how traditional economists do not often see how the economy affect people and social impacts on the economy.
4948

50-
* IN-PROGRESS America Over Water :folklore:music:america:
49+
* STARTED America Over Water :folklore:music:america:
5150

5251
| Author | Shirley Collins |
5352
| Published date | 2022-01-20 |
@@ -63,15 +62,13 @@ https://m.media-amazon.com/images/I/71IYBIjH1gL._SY522_.jpg
6362

6463
Shirley Collins writes her early days and travels with Folklorist, Alan Lomax as the record audio and document the music of Americas heartland. Split in chapters between Collins' early life in -- and their professional and emotional relationship with Lomax,
6564

66-
@@html:<div style="clear: both;"></div>@@
67-
6865
#+keywords: folk
6966

7067
* The Cuckoo's Egg :cybersecurity:truecrime:
7168

7269
| Author | Clifford Stoll |
7370
| Published date | 2005-09-13 |
74-
71+
7572
#+begin_quote
7673
The hacker didn't succeed through sophistication. Rather he poked at obvious places, trying to enter through unlock doors. Persistence, not wizardry, let him through.
7774

@@ -92,9 +89,6 @@ Stoll welcomes the reader into not just his professional life but also the perso
9289

9390
On occasion the book felt a little like groundhog day due to the repetitive events of the hacker appearing and then disappearing again in short succession. Stolls' frustration expressed of the authorities and policing of cyber crime during the time shows just how far the field has come.
9491

95-
~finished 05/12/2024~
96-
97-
@@html:<div style="clear: both;"></div>@@
9892

9993
* Cult of the Dead Cow :cybersecurity:truecrime:hacking:tech:
10094

@@ -109,7 +103,7 @@ On occasion the book felt a little like groundhog day due to the repetitive even
109103

110104
| Author | Julia Ebner |
111105
| Published date | 2020-02-20 |
112-
106+
113107
#+begin_quote
114108
Like the coronavirus pandemic, the current infodemic is a global phenomenon. We need to tackle it on an international level to avoid adding a third layer to this worldwide crisis: a societal one.
115109

@@ -124,8 +118,6 @@ Towards the end specialists are given space to make their predictions for 2025,
124118

125119
Additional content: [[https://www.youtube.com/watch?v=fAFV49e2W5M][Going Dark: The Secret Social Lives of Extremists | Julia Ebner | Talks at Google]]
126120

127-
@@html:<div style="clear: both;"></div>@@
128-
129121
* Rinsed: From Cartels to Crypto :truecrime:financial:technology:
130122

131123
| Author | Geoff White |
@@ -145,9 +137,7 @@ Business Email Compromise (BEC) is unlikely to go anywhere! The email inbox is s
145137

146138
Money laundering and Cyber crime in general are mutually exclusive. Even the most intelligent, highly operative Cyber criminals who can hack systems, compromise organisations and individuals are reliant on the specialists that head up the money laundering industry for their services.
147139

148-
@@html:<div style="clear: both;"></div>@@
149-
150-
* Podcasts:
140+
* Podcasts
151141

152142
Here is a list of podcasts I regularly listen to about a variety of topics:
153143

content/index.org

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ https://m.media-amazon.com/images/I/712DzUtij-L._AC_UF894,1000_QL80_.jpg
3434

3535
Second time reading. Love this book - collection of short stories written by the legend himself.
3636

37-
@@html:<div style="clear: both;"></div>@@
38-
3937
* Previous Books
4038

4139
Ongoing reads/ last completed book:
@@ -49,9 +47,6 @@ Terrifying at times, and very informative. If you want to know how the world bec
4947

5048
[[./books.html][Read More...]]
5149

52-
53-
@@html:<div style="clear: both;"></div>@@
54-
5550
* Contact
5651

5752
Feel free to reach out via email or GitHub:

0 commit comments

Comments
 (0)