自定义CSS以更改Bookdown页面宽度

时间:2017-11-01 23:13:17

标签: css r-markdown bookdown

冒着获得几张选票的风险,我今天下午花了几个小时试图解开我正在处理的bookdown html文档的CSS,我不得不问这个问题。对于我的生活,我无法弄清楚用于增加bookdown文档主文本区域的最大宽度的选择器。我正在处理一些内容,这些内容可以从使用更多大型监视器中获益。

我最近尝试获得我需要的特异性是一个包含以下内容的自定义css文件:

namespace App/Http/Controllers;

use Auth;
use View;
use Illuminate\Http\Controller as BaseController;

abstract Controller extends BaseController
{
    /**
     * @var \App\Models\User
     */
    protected $_user;


    /**
     * Create new controller instance.
     *
     * @return void
     */
    public function __construct()
    {
        $this->_user = Auth::user();
        View::share('user', $this->_user);
        View::share('isAdmin', $this->_user ? $this->_user->isAdmin() : false);
    }
}

我尝试了多种选择器组合,但我无法从800px默认值中获得最大宽度。

出于测试目的,here is an example bookdown document.

1 个答案:

答案 0 :(得分:4)

试试这个:

.book .book-body .page-wrapper .page-inner {
  max-width: 1200px !important;
}