CSS update for table

pull/1/head
Swissky 2024-06-13 23:39:00 +02:00
parent cadc95a39c
commit f021910a1e
2 changed files with 20 additions and 3 deletions

View File

@ -190,6 +190,6 @@ docker exec -it example python ssrfmap.py -r examples/request.txt -p url -m axfr
This blog post was inspired by these great write-ups of the FCSC 2024 challenges. Have a look at them ! :) This blog post was inspired by these great write-ups of the FCSC 2024 challenges. Have a look at them ! :)
- https://vozec.fr/writeups/pong-fcsc2024-en/ - [https://vozec.fr/writeups/pong-fcsc2024-en/](https://vozec.fr/writeups/pong-fcsc2024-en/)
- https://mizu.re/post/pong - [https://mizu.re/post/pong](https://mizu.re/post/pong)
- https://gist.github.com/Siss3l/32591a6d6f33f78bb300bfef241de262 - [https://gist.github.com/Siss3l/32591a6d6f33f78bb300bfef241de262](https://gist.github.com/Siss3l/32591a6d6f33f78bb300bfef241de262)

View File

@ -18,6 +18,23 @@ code {
font-family:'Bitstream Vera Sans Mono','Courier', monospace; font-family:'Bitstream Vera Sans Mono','Courier', monospace;
} }
table{
border-color: rgb(58, 62, 65);
box-shadow: rgba(0, 0, 0, 0.1) 3px 3px;
padding: 7px 7px 7px 10px;
margin: 20px 0 20px 0;
overflow: scroll;
border: 1px solid #ddd;
}
th, td {
padding: 7px 7px 7px 10px;
margin: 20px 0 20px 0;
border-color: rgb(58, 62, 65);
}
.highlight .c { color: #586E75 } /* Comment */ .highlight .c { color: #586E75 } /* Comment */
.highlight .err { color: #93A1A1 } /* Error */ .highlight .err { color: #93A1A1 } /* Error */
.highlight .g { color: #93A1A1 } /* Generic */ .highlight .g { color: #93A1A1 } /* Generic */