2020年5月6日水曜日

Textpatternの背景色をスタイルシートで変更する

プレゼンテーションメニューの「スタイル」で任意のスタイルを選択し、bodyセレクタに以下の様にbackground-colorで指定します。


  /**
   * 1. Set `body` to `relative` to allow positioning of absolute elements.
   * 2. Remove default margin.
   */
  body {
    /* 1 */
    position: relative;
    /* 2 */
    margin: 0;
/*    background: #f7f7f7;*/
    background-color: darkgreen;
  }

適用例


○関連情報
Textpatternのまとめ

・Textpatternのwebサイト
https://textpattern.com/

0 件のコメント:

コメントを投稿