Skip to content

小説家になろう:新規作成 by KOUNO_Motoo

Details

AuthorKOUNO_Motoo

LicenseCC0

Categorysyosetu.com

Created

Updated

Size1.3 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

「小説家になろう」で作品の新規作成及び新規エピソード作成時に本文と前書きの順序を変更し、[タイトル][前書き][本文][後書き]の順に書けるようにしました。
私の場合、この順で書く方がしっくりくるので。

Notes

2024/04/14 公開

Source code

/* ==UserStyle==
@name           小説家になろう:新規作成
@namespace      https://proxima.coomaru.com/
@version        1.0.0
@description    「小説家になろう」の新規作品・エピソード作成対象
@author         Mule, KOUNO Motoo
@license        CC0
==/UserStyle== */

@-moz-document url-prefix("https://syosetu.com/draftepisode/input/")
{
	/* 2024/04/04(木) */

	/* 本文と前書きの順序を入れ替え */
	div.js-episode_input
	{
		display: flex;
		flex-direction: column;
		padding-top: 1em;
	}
	div.js-episode_input > div.c-form__group:nth-child(1)  /* タイトル */
	{
		order: 1;
		border-bottom: 1px dashed #333;
		padding-bottom: 0.5em;
	}
	div.js-episode_input > div.c-form__group:nth-child(2)  /* 本文 */
	{
		order: 3;
		border-bottom: 1px dashed #333;
		padding-bottom: 0.5em;
	}
	div.js-episode_input > div.c-form__group:nth-child(3)  /* 前書き */
	{
		order: 2;
		border-bottom: 1px dashed #333;
		padding-bottom: 0.5em;
	}
	div.js-episode_input > div.c-form__group:nth-child(4), /* 後書き */
	div.c-up-notice-box--tips,                             /* tips */
	div.c-button-box-center                                /* プレビュー/保存ボタン */
	{
		order: 4;
	}
}

Reviews

No reviews yet.