started work on editor frontier post
This commit is contained in:
parent
d90dcc79ad
commit
87feacc546
3 changed files with 132 additions and 11 deletions
22
posts/editor_frontier.md
Normal file
22
posts/editor_frontier.md
Normal file
|
@ -0,0 +1,22 @@
|
|||
---
|
||||
title: "The text editor frontier"
|
||||
|
||||
description: "Comments and thoughts on editor wars."
|
||||
|
||||
date: "2025-01-16"
|
||||
|
||||
draft: true
|
||||
|
||||
tags: []
|
||||
---
|
||||
|
||||
|
||||
|
||||
<iframe width="560" height="315" src="https://www.youtube.com/embed/_MRUmRDzsI0?si=1QPmIFtKYXVqywHR" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
|
||||
|
||||
|
||||
<figure>
|
||||
<img aria-describedby="editor_frontier_image" src="/static/images/editor_frontier.svg"></img>
|
||||
<hr style="width: 80%">
|
||||
<figcaption><p id="editor_frontier_image">Triangle with 3 points corresponding to Power, Ease of Use and Low Resource Usage. Some editors sit on the points while others are broadly placed on the lines of the triangle without specific positioning</p></figcaption>
|
||||
</figure>
|
|
@ -22,6 +22,14 @@ body {
|
|||
margin-left:0px;
|
||||
}
|
||||
|
||||
figure {
|
||||
background: hsla(0, 0%, 30%, 50%);
|
||||
}
|
||||
|
||||
figcaption {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
a {
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
|
@ -198,8 +206,8 @@ blockquote {
|
|||
height: 2rem;
|
||||
}
|
||||
|
||||
/* div element with this class can be a bitch so need to select those as well as pre*/
|
||||
.sourceCode {
|
||||
/* all of these can break out of the box we want to put them in*/
|
||||
.sourceCode, object, :has(> object), img, :has(> img), pre{
|
||||
max-width: -moz-available;
|
||||
max-width: -webkit-fill-available;;
|
||||
max-width: fill-available;
|
||||
|
@ -207,17 +215,8 @@ blockquote {
|
|||
}
|
||||
|
||||
pre {
|
||||
/*We also need it on pre because not all pre blocks are source code >:(*/
|
||||
max-width: -moz-available;
|
||||
max-width: -webkit-fill-available;;
|
||||
max-width: fill-available;
|
||||
width: fit-content;
|
||||
box-sizing: border-box;
|
||||
min-height: 2em;
|
||||
/*
|
||||
* previously a cludge of 75 em this is now a cludge of 2 different vendor extensions
|
||||
*
|
||||
* */
|
||||
|
||||
/*
|
||||
* need to may y axis scroll hidden for chromium
|
||||
|
|
100
static/images/editor_frontier.svg
Normal file
100
static/images/editor_frontier.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 18 KiB |
Loading…
Reference in a new issue