-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwriteups.html
More file actions
127 lines (111 loc) · 4.17 KB
/
writeups.html
File metadata and controls
127 lines (111 loc) · 4.17 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
---
layout: default
title: "All TryHackMe CTF Writeups"
description: "Browse all cybersecurity CTF writeups and TryHackMe walkthroughs by Giabbi."
permalink: /writeups/
---
<style>
/* Wrapper container */
.writeups-container {
max-width: 800px;
margin: 0 auto;
box-sizing: border-box;
}
/* Logo styling at the top */
.writeups-container .logo {
margin-bottom: 30px;
text-align: center;
}
.writeups-container .logo img {
max-width: 200px;
height: auto;
}
/* Writeup list styling */
.writeups-container .writeup-list {
list-style: none;
padding: 0;
margin: 30px 0;
}
/* Ensure high specificity here so the margin applies perfectly */
.writeups-container .writeup-item {
background-color: #333;
border: 1px solid #00ff00;
border-radius: 5px;
margin: 15px 0 !important; /* Vertical spacing restored! */
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px;
}
.writeups-container .writeup-item img {
max-width: 50px;
margin-right: 20px;
}
.writeups-container .writeup-title {
flex: 1;
text-align: left;
font-size: 1.2em;
color: #00ff00;
}
/* SEO FIX: Style the <a> tag to look and act exactly like your old button */
.writeups-container .writeup-item a.view-btn {
background-color: #222;
color: #00ff00;
border: 1px solid #00ff00;
padding: 8px 16px;
cursor: pointer;
border-radius: 4px;
transition: background-color 0.3s, color 0.3s;
text-decoration: none;
display: inline-block;
font-size: 13.3333px;
font-family: Arial, sans-serif;
text-align: center;
}
.writeups-container .writeup-item a.view-btn:hover {
background-color: #00ff00;
color: #222;
}
/* Footer note styling */
.writeups-container .footer-note {
margin-top: 40px;
font-size: 1.5em;
color: #00ff00;
text-align: center;
margin-bottom: 40px;
}
</style>
<br>
<div class="writeups-container">
<div class="logo">
<img src="{{ '/assets/images/THMlogo-gray_scale.png' | relative_url }}" alt="TryHackMe Logo">
</div>
<ul class="writeup-list">
<li class="writeup-item" style="flex-wrap: wrap; gap: 10px;">
<img src="{{ '/assets/images/smol.png' | relative_url }}" alt="Smol Writeup Logo" style="margin-right: 0;">
<div class="writeup-title" style="min-width: 120px;">Smol</div>
<a href="{{ '/writeups/smol' | relative_url }}" class="view-btn" style="margin-top: 5px;">View Writeup</a>
</li>
<li class="writeup-item" style="flex-wrap: wrap; gap: 10px;">
<img src="{{ '/assets/images/hammer.png' | relative_url }}" alt="Hammer Writeup Logo" style="margin-right: 0;">
<div class="writeup-title" style="min-width: 120px;">Hammer</div>
<a href="{{ '/writeups/hammer' | relative_url }}" class="view-btn" style="margin-top: 5px;">View Writeup</a>
</li>
<li class="writeup-item" style="flex-wrap: wrap; gap: 10px;">
<img src="{{ '/assets/images/crypto_failures.png' | relative_url }}" alt="Crypto Failures Writeup Logo" style="margin-right: 0;">
<div class="writeup-title" style="min-width: 120px;">Crypto Failures</div>
<a href="{{ '/writeups/crypto-failures' | relative_url }}" class="view-btn" style="margin-top: 5px;">View Writeup</a>
</li>
<li class="writeup-item" style="flex-wrap: wrap; gap: 10px;">
<img src="{{ '/assets/images/decryptify.png' | relative_url }}" alt="Decryptify Writeup Logo" style="margin-right: 0;">
<div class="writeup-title" style="min-width: 120px;">Decryptify</div>
<a href="{{ '/writeups/decryptify' | relative_url }}" class="view-btn" style="margin-top: 5px;">View Writeup</a>
</li>
<li class="writeup-item" style="flex-wrap: wrap; gap: 10px;">
<img src="{{ '/assets/images/sticker.png' | relative_url }}" alt="The Sticker Shop Writeup Logo" style="margin-right: 0;">
<div class="writeup-title" style="min-width: 120px;">The Sticker Shop</div>
<a href="{{ '/writeups/the-sticker-shop' | relative_url }}" class="view-btn" style="margin-top: 5px;">View Writeup</a>
</li>
</ul>
<h2 class="footer-note">Other Websites and Writeups Coming Soon!</h2>
</div>