DLL fidlle

Chris Hadfield DLL live preview

by CKEditor

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>CKEditor 5 – Editor DLL Sample</title>
    <style>
        body {
            max-width: 700px;
            margin: 10px auto;
        }
    </style>
</head>
<body>
<div id="editor">
<h3 style="text-align:justify;">The singing Canadian</h3>
    <figure class="image">
        <img class="image-style-align-left" src="https://www.gniazdoswiatow.net/wn/wp-content/uploads/2021/11/Chris_Hadfield_30_April_2013_200.jpg" alt="Chris" />
    </figure>

<p style="text-align:justify;"><strong>Chris Austin Hadfield</strong>&nbsp;was born on August 29, 1959, in Canada. As a child, he watched the Apollo 11 moon landing, and it inspired him to also become an astronaut. At the time Canada had no space program, so Hadfield joined the <a href="https://www.rcaf-arc.forces.gc.ca/en/">Royal Canadian Air Forces</a> and served as a fighter pilot for 25 years.</p>
<p style="text-align:justify;">In 1992, Hadfield was accepted into the Canadian astronaut program by the <a href="https://www.asc-csa.gc.ca/eng/">Canadian Space Agency</a>. He flew his first mission to the Russian <i>Mir</i> space station in 1995 aboard&nbsp;the <i>Atlantis</i> space shuttle. Six years later onboard the <i>Endeavour</i> space shuttle he flew to the <i>International Space Station</i>. He revisited the <i>ISS</i> in 2012 flying a Russian <i>Soyuz</i> spacecraft and taking command over the station during <i>Expedition 34/35</i>.</p>
<p style="text-align:justify;">Hadfield was most recognised by the general public for his rendition of the famous <i>Space Oddity</i> song by David Bowie which he recorded onboard the <i>International Space Station</i>. He also recorded numerous educational materials for schools while working in orbit. After his retirement from the astronaut service, he wrote three books based on his experience.</p>
<h3 style="text-align:justify;"><strong>Space flights of Chris Hadfield</strong></h3>
<figure class="table">
   ...

SCSS

html {
    font-size: 52.5%;

    @media (min-width: 768px) {
        font-size: 60%;
    }

    @media not all, only screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 768px) and (min-resolution: 192dpi), only screen and (min-width: 768px) and (min-resolution: 2dppx) {
        font-size: 60%;
    }
}

body {
    font-size: 19px;
    font-size: 1.9rem;
    color: rgba(64, 81, 102, .96);
    font-family: 'Nunito Sans', sans-serif;
}

.ck.ck-editor__main {
    & > .ck.ck-editor__editable_inline {

        b,
        strong {
            font-weight: 700;
        }

        h2,
        h3,
        h4 {
            font-weight: 600;
        }

        h2 {
            margin-top: 2.8rem;
            font-size: 2.7rem;
            line-height: 2.5rem;
            margin-bottom: 1.25rem;
        }
        h3 {
            line-height: 1.5;
            font-size: 2.2rem;
            margin-top: 2.5rem;
            margin-bottom: .5rem;
        }

        h4 {
            font-size: 1.8rem;
            font-weight: 800;
            line-height: 2.5rem;
            margin-top: 1.94425rem;
            margin-bottom: .83325rem;
        }

        h2 + h3 {
            margin-top: 2rem;
        }

        p {
            margin-top: 2.5rem;
            margin-bottom: 2.5rem;
            letter-spacing: -.003rem;
        }

        h2+ol,
        h2+p,
        h2+ul,
        h3+ol,
        h3+p,
        h3+ul,
        h4+ol,
        h4+p,
        h4+ul,
        h5+ol,
        h5+p,
        h5+ul {
            margin-top: 0;
        }

        ul ul,
        ol ul,
        ul ol,
        ol ol {
            margin: 0;
        }

        blockquote,
        ul,
        ol {
            margin-top: 2.5rem;
            margin-bottom: 2.5rem;
        }
        
        li {
            & + li {
                margin-top: .5rem;
            }
        }
        
        blockquote {
            overflow: hidden;
           ...