testing pre-atari class

This commit is contained in:
Greg Gauthier 2025-01-17 10:16:18 +00:00
parent 84cd24e872
commit 1b147020ec
2 changed files with 45 additions and 3 deletions

View File

@ -268,8 +268,21 @@ pre {
line-height: 1.15;
overflow-x: auto;
}
.pre-atari div {
width: 78%;
border: solid yellow 2px;
padding-top: 10px;
padding-bottom: 10px;
padding-left:10px;
margin-left: 10px;
background-color: #004d80;
font-family: 'Atari Classic Chunky', serif;
font-weight: lighter;
font-size: 0.525em;
line-height: 1.2;
overflow-wrap: break-word;
color: #f2f2f2;
}
blockquote {
font-family: "Dot Matrix Regular", monospace;
@ -303,3 +316,19 @@ code {
line-height: 1.15;
}
.codeblock-atari div {
width: 87%;
border: solid yellow 2px;
padding-top: 10px;
padding-bottom: 0;
padding-left:10px;
margin-left: 25px;
background-color: #004d80;
font-family: 'Atari Classic Chunky', serif;
font-weight: lighter;
font-size: 0.525em;
line-height: 1.2;
overflow-wrap: break-word;
color: #f2f2f2;
}

View File

@ -18,4 +18,17 @@
```
For now, all my Atari stuff can be found at [https://ataricode.com](https://ataricode.com).
I may migrate it all over here instead. But that remains to be decided...
<div class="pre-atari">
10 ;
20 ;ADDNRS.SRC
30 ;
40 *=$0600
50 ;
60 CLD
70 ADDNRS CLC
80 LDA #2
90 ADC #2
100 STA $CB
110 RTS
120 .END
</div>