| <!DOCTYPE html><html><head> |
| <link href="https://cdn.jsdelivr.net/npm/quill@2/dist/quill.snow.css" rel="stylesheet"> |
| <script src="https://cdn.jsdelivr.net/npm/quill@2/dist/quill.js"></script> |
| <style> |
| body{margin:0;font-family:'DejaVu Sans',sans-serif;background:linear-gradient(160deg,#26304a,#2d6a8c);height:100vh} |
| .top{height:30px;background:#18181b;color:#ddd;font-size:13px;line-height:30px;padding:0 14px} |
| .win{position:absolute;left:360px;top:110px;width:1200px;background:#fff;border-radius:10px;box-shadow:0 12px 45px rgba(0,0,0,.5);overflow:hidden} |
| .title{height:40px;background:#33415c;color:#eee;display:flex;align-items:center;padding:0 14px;font-size:15px;font-weight:bold} |
| .dot{width:13px;height:13px;border-radius:50%;margin-right:8px;display:inline-block} |
| #editor{height:560px;font-size:18px} |
| .ql-toolbar{background:#f3f3f6} |
| </style></head><body> |
| <div class="top">Activities Text Editor en 12:00</div> |
| <div class="win"> |
| <div class="title"><span class="dot" style="background:#ff5f56"></span><span class="dot" style="background:#ffbd2e"></span><span class="dot" style="background:#27c93f"></span> Document — report.odt</div> |
| <div id="editor"><h2>Meeting Notes</h2><p>We discussed the roadmap and agreed on priorities. Design leads the first sprint.</p><p>Testing starts once the parser is fixed and merged.</p><p>Ship target is the end of the month.</p></div> |
| </div> |
| <script>window.addEventListener('load',function(){ |
| window.q=new Quill('#editor',{theme:'snow',modules:{toolbar:[['bold','italic','underline','strike'],['blockquote','code-block'],[{list:'ordered'},{list:'bullet'}]]}}); |
| document.title='ready'; |
| });</script></body></html> |