59 lines
1.8 KiB
CSS
59 lines
1.8 KiB
CSS
/*
|
|
* BlenderBIM Add-on - OpenBIM Blender Add-on
|
|
* Copyright (C) 2020, 2021 Dion Moult <dion@thinkmoult.com>
|
|
*
|
|
* This file is part of BlenderBIM Add-on.
|
|
*
|
|
* BlenderBIM Add-on is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* BlenderBIM Add-on is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY, without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with BlenderBIM Add-on. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* You may copy this `schedule.css` template alongside your input schedule
|
|
* document with the same filename. For example if you have a schedule called
|
|
* `door_types.ods`, you can create a `door_types.css` in the same folder to
|
|
* style that schedule.
|
|
*/
|
|
|
|
/**
|
|
* If you specify a font size in CSS, such as text { font-size: 5; }, all fonts
|
|
* will be overriden to match that size.
|
|
*
|
|
* If your CSS, ODS, XLSX does not specify a font size, the variables below
|
|
* will specify the default font size.
|
|
*
|
|
* If your ODS, XLSX does specify a font size, they will scale linearly based
|
|
* on the variables below.
|
|
*/
|
|
|
|
:root {
|
|
/* --font-size-pt: 10; */
|
|
/* --font-size-px: 3; */
|
|
--font-width: 0.69;
|
|
}
|
|
|
|
text.schedule,
|
|
tspan.schedule {
|
|
/* 2.5mm */
|
|
fill: #2c5573 !important;
|
|
stroke: none !important;
|
|
font-family: "Century Gothic", "OpenGost Type B TT", "DejaVu Sans Condensed",
|
|
"Liberation Sans", "Arial Narrow", "Arial" !important;
|
|
font-size:2.5px !important;
|
|
}
|
|
|
|
.border {
|
|
stroke: #2c5573;
|
|
stroke-width: 0.3;
|
|
fill: none !important;
|
|
}
|