Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/celerity/postprocessor/CelerityLargeFontPostprocessor.php
12262 views
1
<?php
2
3
final class CelerityLargeFontPostprocessor
4
extends CelerityPostprocessor {
5
6
public function getPostprocessorKey() {
7
return 'fontsizeplusone';
8
}
9
10
public function getPostprocessorName() {
11
return pht('Use Larger Font Size');
12
}
13
14
public function buildVariables() {
15
return array(
16
17
'basefont' => "14px 'Segoe UI', 'Segoe UI Web Regular', ".
18
"'Segoe UI Symbol', 'Lato', 'Helvetica Neue', Helvetica, ".
19
"Arial, sans-serif",
20
21
// Font Sizes
22
'biggestfontsize' => '16px',
23
'biggerfontsize' => '15px',
24
'normalfontsize' => '14px',
25
'smallerfontsize' => '13px',
26
'smallestfontsize' => '12px',
27
28
);
29
}
30
31
}
32
33