0byt3m1n1
Path:
/
home
/
kassiope
/
www
/
vendor
/
spipu
/
html2pdf
/
src
/
Tag
/
Html
/
[
Home
]
File: Big.php
<?php /** * Html2Pdf Library - Tag class * * HTML => PDF converter * distributed under the OSL-3.0 License * * @package Html2pdf * @author Laurent MINGUET <webmaster@html2pdf.fr> * @copyright 2017 Laurent MINGUET */ namespace Spipu\Html2Pdf\Tag\Html; use Spipu\Html2Pdf\Tag\AbstractHtmlTag; /** * Tag Big */ class Big extends AbstractHtmlTag { /** * @inheritdoc */ public function getName() { return 'big'; } /** * @inheritdoc */ protected function overrideStyles() { $this->parsingCss->value['mini-decal']-= $this->parsingCss->value['mini-size']*0.12; $this->parsingCss->value['mini-size'] *= 1.2; return $this; } }