view release on metacpan or search on metacpan
lib/CSS/DOM/PropertyParser.pm view on Meta::CPAN
   values => [
    [ type => CSS_IDENT, value => 'Lucida' ],
    [ type => CSS_IDENT, value => 'Grande' ],
   ]
 
 $prop_parser->match('font','bold 13px Lucida Grande');
 {
  'font-style' => [
    'normal', $prim, type => CSS_IDENT, value => 'normal'
   ],
  'font-variant' => [
    'normal', $prim, type => CSS_IDENT, value => 'normal'
   ],
  'font-weight' => [
    'bold', $prim, type => CSS_IDENT, value => 'bold'
   ],
  'font-size' => [ '13px', $prim, type => CSS_PX, value => 13 ],
  'line-height' => [
    'normal', $prim, type => CSS_IDENT, value => 'normal'
   ],
lib/CSS/DOM/PropertyParser.pm view on Meta::CPAN
     default => 'normal',
     inherit => 1,
    },
    
   'font-weight' => {
     format => 'normal|bold|bolder|lighter|
                100|200|300|400|500|600|700|800|900',
     default => 'normal',
     inherit => 1,
    },
    
view release on metacpan or search on metacpan
t/Parser/basic.t view on Meta::CPAN
.foo {
  color: red;
}
.bar {
  color: blue;
  font-weight: bold;
}
.biz {
  color: green;
  font-size: 10px;
}
.foo {
  color: red;
}
.bar {
  color: blue;
  font-weight: bold;
}
END
my $simple = CSS::Inliner::Parser->new();
view release on metacpan or search on metacpan
###############################################################################
# Removal of trailing semi-colons, at end of a group.
subtest 'trailing semi-colons' => sub {
  subtest 'at end of group; removed' => sub {
    my $given  = 'h1 { font-weight: bold; }';
    my $expect = 'h1{font-weight:bold}';
    my $got    = minify($given);
    is $got, $expect;
  };
  subtest 'inside of group; preserved' => sub {
    my $given  = 'h1 { font-weight: bold; color: red;}';
    my $expect = 'h1{font-weight:bold;color:red}';
    my $got    = minify($given);
    is $got, $expect;
  };
};
view release on metacpan or search on metacpan
t/005-moonfall.org.t view on Meta::CPAN
             [nav_link_attrs]
             }
.question {
            color: #660000;
            font-weight: bold;
            margin-left: [side_margin];
            margin-right: [side_margin];
            font-size: [large_em];
            }
t/005-moonfall.org.t view on Meta::CPAN
.accent { 
          margin-left: [side_margin];
          margin-right: [side_margin];
          font-size: [large_em];
          font-weight:bold;
          color: #663300;
          }
/* so internal anchors aren't cut short when jumping */
#bottom_space { 
t/005-moonfall.org.t view on Meta::CPAN
             margin-right: 5px;
             }
.question {
            color: #660000;
            font-weight: bold;
            margin-left: 20px;
            margin-right: 20px;
            font-size: 1.2em;
            }
t/005-moonfall.org.t view on Meta::CPAN
.accent { 
          margin-left: 20px;
          margin-right: 20px;
          font-size: 1.2em;
          font-weight:bold;
          color: #663300;
          }
/* so internal anchors aren't cut short when jumping */
#bottom_space { 
view release on metacpan or search on metacpan
lib/CSS/Prepare/Property/Values.pm view on Meta::CPAN
    = qr{ $font_size_value / $line_height_value }x;
our $font_style_value = qr{ (?: italic | oblique | normal | inherit ) }x;
our $font_variant_value = qr{ (?: normal | small-caps | inherit ) }x;
our $font_weight_value = qr{
        (?:
              normal | bold | bolder | lighter
            | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900
            | inherit
        )
    }x;
view release on metacpan or search on metacpan
lib/CSS/ppport.h view on Meta::CPAN
#ifndef IVSIZE
#  ifdef LONGSIZE
#    define IVSIZE LONGSIZE
#  else
#    define IVSIZE 4 /* A bold guess, but the best we can make. */
#  endif
#endif
#ifndef UVTYPE
#  define UVTYPE                         unsigned IVTYPE
#endif
view release on metacpan or search on metacpan
.foo {
	color: red;
}
.bar {
	color: blue;
	font-weight: bold;
}
.biz {
	color: green;
	font-size: 10px;
}
.foo2 {
	color: red;
}
.bar2 {
	color: blue;
	font-weight: bold;
}
.biz2 {
	color: green;
	font-size: 10px;
}
.foo3 {
	color: red;
}
.bar3 {
	color: blue;
	font-weight: bold;
}
.biz3 {
	color: green;
	font-size: 10px;
}
.foo4 {
	color: red;
}
.bar4 {
	color: blue;
	font-weight: bold;
}
.biz4 {
	color: green;
	font-size: 10px;
}
.foo5 {
	color: red;
}
.bar5 {
	color: blue;
	font-weight: bold;
}
.biz5 {
	color: blue;
}
.biz5 {
.foo {
	color: red;
}
.bar {
	color: blue;
	font-weight: bold;
}
.biz {
	color: green;
	font-size: 10px;
}
.foo2 {
	color: red;
}
.bar2 {
	color: blue;
	font-weight: bold;
}
.biz2 {
	color: green;
	font-size: 10px;
}
.foo3 {
	color: red;
}
.bar3 {
	color: blue;
	font-weight: bold;
}
.biz3 {
	color: green;
	font-size: 10px;
}
.foo4 {
	color: red;
}
.bar4 {
	color: blue;
	font-weight: bold;
}
.biz4 {
	color: green;
	font-size: 10px;
}
.foo5 {
	color: red;
}
.bar5 {
	color: blue;
	font-weight: bold;
	line-height: 20px;
}
.biz5 {
	color: green;
	font-size: 10px;
view release on metacpan or search on metacpan
lib/CSS/SpriteMaker/Simple.pm view on Meta::CPAN
=head1 AUTHOR
=for html  <div style="display: table; height: 91px; background: url(http://zoffix.com/CPAN/Dist-Zilla-Plugin-Pod-Spiffy/icons/section-author.png) no-repeat left; padding-left: 120px;" ><div style="display: table-cell; vertical-align: middle;">
=for html   <span style="display: inline-block; text-align: center;"> <a href="http://metacpan.org/author/ZOFFIX"> <img src="http://www.gravatar.com/avatar/328e658ab6b08dfb5c106266a4a5d065?d=http%3A%2F%2Fwww.gravatar.com%2Favatar%2F627d83ef9879f31bda...
=for html  </div></div>
=head1 LICENSE
view release on metacpan or search on metacpan
bin/cgi_cvs_evolr view on Meta::CPAN
      body  { background-color: #CCFFFF }
      table { background-color: #FFFFFF }
      th    { background-color: #CCCCCC }
      h1    { text-align: center }
      h2    { color: red }
      td a  { font-weight: bold }
      tr.total      { font-weight: bold }
      table.layout  { background-color: #CCFFFF }
      span.author   { font-weight: bold }
      span.filename { color: blue }
      a.filename    { font-weight: normal }
      span.revision { font-weight: bold; color: blue }
      span.tag      { font-weight: bold }
      span.date     { }
      span.deleted  { font-weight: bold; color: red }
      span.added    { font-weight: bold; color: blue }
      span.modified { font-weight: bold }
      a.modified    { font-weight: bold }
};
    $html =~ s/^\s+//gm;
    my $template = HTML::Template->new(
            loop_context_vars   => 1,
view release on metacpan or search on metacpan
lib/CWB/CEQL/Parser.pm view on Meta::CPAN
The B<HtmlErrorMessage> method will automatically convert HTML metacharacters
and non-ASCII characters to entities, so it is safe to include the returned
HTML code directly in a Web page.  Error messages may use basic wiki-style
formatting: C<''...''> for typewriter font, C<//...//> for italics and
C<**...**> for bold font.  Note that such markup is non-recursive and nested
formatting will be ignored.  User input should always be enclosed in
C<''...''> in error messages so that C<//> and C<**> sequences in the input
are not mistaken as formatting instructions.
=head2 Calling subrules
lib/CWB/CEQL/Parser.pm view on Meta::CPAN
of the callstack.  The string I<$html_code> is valid HTML and can directly be
included in a generated Web page.  In particular, unsafe and non-ASCII
characters have been encoded as HTML entities.  Simple, non-recursive
wiki-style markup in an error message is interpreted in the following way:
  **<text>**    <text> is shown in bold font (<b> ... </b>)
  //<text>//    <text> is displayed in italics (<i> ... </i>)
  ''<text>''    <text> is shown in typewriter font (<code> ... </code>)
Lines starting with C< - > (note the two blanks) are converted into list items.
lib/CWB/CEQL/Parser.pm view on Meta::CPAN
=over 4
=item *
C<< **<text>** >> - <text> is displayed in bold face (C<< <b> ... </b> >>)
=item *
C<< //<text>// >> - <text> is displayed in italics (C<< <i> ... </i> >>)
lib/CWB/CEQL/Parser.pm view on Meta::CPAN
=back
The wiki markup is non-recursive, i.e. no substitutions will be applied to
the text wrapped in C<''...''> etc.  This behaviour is intentional, so that
e.g. B<**> in a query expression will not be mistaken for a bold face marker,
(as long as the query is displayed in typewriter font, i.e. as C<''<query>''>).
=cut
sub formatHtmlText {
view release on metacpan or search on metacpan
inc/Pod/Markdown.pm view on Meta::CPAN
sub interior_sequence {
    my ($parser, $seq_command, $seq_argument, $pod_seq) = @_;
    my $data      = $parser->_private;
    my %interiors = (
        'I' => sub { return '_' . $_[1] . '_' },      # italic
        'B' => sub { return '__' . $_[1] . '__' },    # bold
        'C' => sub { return '`' . $_[1] . '`' },      # monospace
        'F' => sub { return '`' . $_[1] . '`' },      # system path
        'S' => sub { return '`' . $_[1] . '`' },      # code
        'E' => sub {
            my ($seq, $charname) = @_;
view release on metacpan or search on metacpan
 * capable of those should have IVSIZE already. */
#if !defined(IVSIZE) && defined(LONGSIZE)
#   define IVSIZE LONGSIZE
#endif
#ifndef IVSIZE
#   define IVSIZE 4 /* A bold guess, but the best we can make. */
#endif
#ifndef UVSIZE
#   define UVSIZE IVSIZE
#endif
view release on metacpan or search on metacpan
#ifndef IVSIZE
#  ifdef LONGSIZE
#    define IVSIZE LONGSIZE
#  else
#    define IVSIZE 4 /* A bold guess, but the best we can make. */
#  endif
#endif
#ifndef UVTYPE
#  define UVTYPE                         unsigned IVTYPE
#endif
view release on metacpan or search on metacpan
#ifndef IVSIZE
#  ifdef LONGSIZE
#    define IVSIZE LONGSIZE
#  else
#    define IVSIZE 4 /* A bold guess, but the best we can make. */
#  endif
#endif
#ifndef UVTYPE
#  define UVTYPE                         unsigned IVTYPE
#endif
view release on metacpan or search on metacpan
#ifndef IVSIZE
#  ifdef LONGSIZE
#    define IVSIZE LONGSIZE
#  else
#    define IVSIZE 4 /* A bold guess, but the best we can make. */
#  endif
#endif
#ifndef UVTYPE
#  define UVTYPE                         unsigned IVTYPE
#endif
view release on metacpan or search on metacpan
example.css view on Meta::CPAN
  zoom: 1; }
/* For IE 6/7 (trigger hasLayout) */
.blog_date {
  font-family: open_sans;
  font-weight: bold;
  font-style: italic;
  color: #b3b3b3;
  margin-bottom: 10px;
  text-shadow: 0px -1px 0px rgba(50, 50, 50, 0.6); }
view release on metacpan or search on metacpan
examples/pdf-tagged-text.pl view on Meta::CPAN
	[ 1, "Section 3.3",   2 ],
	);
my @level_data =
	(
	[HEADING1_SIZE, 'H1', ['bold', 'open'],],
	[HEADING2_SIZE, 'H2', [],],
	[HEADING3_SIZE, 'H3', ['italic'],],
	);
my @ipsum_lorem = split(' ', "Lorem ipsum dolor sit amet, consectetur adipiscing"
examples/pdf-tagged-text.pl view on Meta::CPAN
		$parent = $outline_parents[$$section[0]-1];
		}
	$cr->tag_begin('Sect', '');
	$cr->select_font_face('Sans', 'normal', 'bold');
	$cr->set_font_size($level_data[$$section[0]]->[0]);
	$cr->move_to(MARGIN, $y_pos);
	$cr->tag_begin($level_data[$$section[0]]->[1], '');
examples/pdf-tagged-text.pl view on Meta::CPAN
sub draw_cover
	{
	my ($cr) = @_;
	$cr->select_font_face("Sans", 'normal', 'bold');
	$cr->set_font_size(16);
	$cr->move_to(PAGE_WIDTH/3, PAGE_HEIGHT/2);
	$cr->tag_begin("Span", '');
examples/pdf-tagged-text.pl view on Meta::CPAN
	$surface->set_metadata('mod-date', "2016-06-21T05:43:21Z");
	$cr->tag_begin("Document", '');
	draw_cover($cr);
	$surface->add_outline($surface->OUTLINE_ROOT, 'Cover', 'page=1', ['bold']);
	$cr->show_page();
	$page_num = 0;
	draw_page_num($cr, $roman_numerals[$page_num++], 0);
	$y_pos = MARGIN;
	$surface->add_outline($surface->OUTLINE_ROOT, "Contents", "dest='TOC'", ['bold']);
	$cr->tag_begin(Cairo::TAG_DEST, "name='TOC' internal");
	$cr->tag_begin("TOC", '');
	foreach (@contents)
view release on metacpan or search on metacpan
lib/CairoX/Sweet.pm view on Meta::CPAN
    my $color = shift;
    $color = Color->check($color) ? $color : Color->coerce($color);
    my $font_face = $args{'font_face'} || [];
    my $font_size = shift;
    my $slant = $args{'slant'} || 'normal'; # normal italic oblique
    my $weight = $args{'weight'} || 'normal'; # normal bold
    $self->c->select_font_face(@{ $font_face }, $slant, $weight) if scalar @$font_face;
    $self->c->set_font_size($font_size) if defined $font_size;
    $self->c->set_source_rgb($color->color) if defined $color;
lib/CairoX/Sweet.pm view on Meta::CPAN
                  color => '#444444',
                  x => 37,
                  y => 115,
                  font_face => ['courier'],
                  font_size => 13
                  weight => 'bold',
    );
C<text => 'the text'>
String. The only required parameter. The text to add.
lib/CairoX/Sweet.pm view on Meta::CPAN
Number. The size of the text. Default is C<10>.
C<weight>
One of C<normal> or C<bold>.
C<slant>
One of C<normal>, C<italic> or C<oblique>.
view release on metacpan or search on metacpan
examples/css/bootstrap-responsive.css view on Meta::CPAN
  .navbar .nav > .divider-vertical {
    display: none;
  }
  .navbar .nav > li > a, .navbar .dropdown-menu a {
    padding: 6px 15px;
    font-weight: bold;
    color: #999999;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }
view release on metacpan or search on metacpan
lib/Calendar/Plugin/Renderer/Text.pm view on Meta::CPAN
sub get_day_header   {
    my ($self) = @_;
    my $max_length_day_name = $self->max_days_name;
    my $day_names = $self->day_names;
    my $line = '<blue><bold>|</bold></blue>';
    my $i = 1;
    foreach (@$day_names) {
        my $x = length($_);
        my $y = $max_length_day_name - $x;
        my $z = $y + 1;
        if ($i == 1) {
            $line .= ((' ')x$z). "<yellow><bold>$_</bold></yellow>";
            $i++;
        }
        else {
            $line .= " <blue><bold>|</bold></blue>".((' ')x$z)."<yellow><bold>$_</bold></yellow>";
        }
    }
    $line .= " <blue><bold>|</bold></blue>";
    return $line;
}
=head2 get_month_header()
lib/Calendar/Plugin/Renderer/Text.pm view on Meta::CPAN
    my $f = $self->f;
    my $s = $self->s;
    my $h = $self->month_head;
    return '<blue><bold>|</bold></blue>'.
           (' ')x($f-1).
           '<yellow><bold>'.
           $h.
           '</bold></yellow>'.
           (' ')x($s-1).
           '<blue><bold>|</bold></blue>';
}
=head2 get_dashed_line()
=cut
sub get_dashed_line  {
    my ($self) = @_;
    my $line_size = $self->line_size;
    return '<blue><bold>+'.('-')x($line_size-2).'+</bold></blue>';
}
=head2 get_blocked_line()
=cut
sub get_blocked_line {
    my ($self) = @_;
    my $max_length_day_name = $self->max_days_name;
    my $line = '<blue><bold>+';
    foreach (1..7) {
        $line .= ('-')x($max_length_day_name+2).'+';
    }
    $line .= '</bold></blue>';
    return $line;
}
=head2 get_empty_space()
lib/Calendar/Plugin/Renderer/Text.pm view on Meta::CPAN
    my $max_length_day_name = $self->max_days_name;
    my $start_index = $self->start_index;
    my $line = '';
    if ($start_index % 7 != 0) {
        $line .= '<blue><bold>|</bold></blue>'.(' ')x($max_length_day_name+2);
        map { $line .= ' 'x($max_length_day_name+3) } (2..($start_index %= 7));
    }
    return $line;
}
lib/Calendar/Plugin/Renderer/Text.pm view on Meta::CPAN
    my $start_index = $self->start_index;
    my $days        = $self->days;
    my $line = '';
    my $blocked_line = $self->get_blocked_line;
    foreach (1 .. $days) {
        $line .= sprintf("<blue><bold>|</bold></blue><cyan><bold>%".($max_length_day_name+1)."s </bold></cyan>", $_);
        if ($_ != $days) {
            $line .= "<blue><bold>|</bold></blue>\n".$blocked_line."\n" unless (($start_index + $_) % 7);
        }
        elsif ($_ == $days) {
            my $x = 7 - (($start_index + $_) % 7);
            if (($x >= 2) && ($x != 7)) {
                $line .= '<blue><bold>|</bold></blue>'. (' 'x($max_length_day_name+2));
                map { $line .= ' 'x($max_length_day_name+3) } (1..$x-1);
            }
            elsif ($x != 7) {
                $line .= '<blue><bold>|</bold></blue>'.' 'x($max_length_day_name+2);
            }
        }
    }
    return sprintf("%s<blue><bold>|</bold></blue>\n%s\n", $line, $blocked_line);
}
=head1 AUTHOR
view release on metacpan or search on metacpan
lib/CallBackery/qooxdoo/callbackery/source/class/callbackery/theme/Font.js view on Meta::CPAN
  {    
    "title" :
    {
      size : 16,
      family : ["Lucida Grande", "DejaVu Sans", "Verdana", "sans-serif"],
      bold : false,
      color: "font",
      lineHeight: 1.8
    }
  }
});
view release on metacpan or search on metacpan
#ifndef IVSIZE
#  ifdef LONGSIZE
#    define IVSIZE LONGSIZE
#  else
#    define IVSIZE 4 /* A bold guess, but the best we can make. */
#  endif
#endif
#ifndef UVTYPE
#  define UVTYPE                         unsigned IVTYPE
#endif
view release on metacpan or search on metacpan
static/orig/css/blueprint/screen.css view on Meta::CPAN
h1, h2, h3, h4, h5, h6 {font-weight:normal;color:#111;}
h1 {font-size:3em;line-height:1;margin-bottom:0.5em;}
h2 {font-size:2em;margin-bottom:0.75em;}
h3 {font-size:1.5em;line-height:1;margin-bottom:1em;}
h4 {font-size:1.2em;line-height:1.25;margin-bottom:1.25em;}
h5 {font-size:1em;font-weight:bold;margin-bottom:1.5em;}
h6 {font-size:1em;font-weight:bold;}
h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {margin:0;}
p {margin:0 0 1.5em;}
.left {float:left !important;}
p .left {margin:1.5em 1.5em 1.5em 0;padding:0;}
.right {float:right !important;}
p .right {margin:1.5em 0 1.5em 1.5em;padding:0;}
a:focus, a:hover {color:#09f;}
a {color:#06c;text-decoration:underline;}
blockquote {margin:1.5em;color:#666;font-style:italic;}
strong, dfn {font-weight:bold;}
em, dfn {font-style:italic;}
sup, sub {line-height:0;}
abbr, acronym {border-bottom:1px dotted #666;}
address {margin:0 0 1.5em;font-style:italic;}
del {color:#666;}
static/orig/css/blueprint/screen.css view on Meta::CPAN
li ul, li ol {margin:0;}
ul, ol {margin:0 1.5em 1.5em 0;padding-left:1.5em;}
ul {list-style-type:disc;}
ol {list-style-type:decimal;}
dl {margin:0 0 1.5em 0;}
dl dt {font-weight:bold;}
dd {margin-left:1.5em;}
table {margin-bottom:1.4em;width:100%;}
th {font-weight:bold;}
thead th {background:#c3d9ff;}
th, td, caption {padding:4px 10px 4px 5px;}
tbody tr:nth-child(even) td, tbody tr.even td {background:#e5ecf9;}
tfoot {font-style:italic;}
caption {background:#eee;}
static/orig/css/blueprint/screen.css view on Meta::CPAN
.last {margin-right:0;padding-right:0;}
.top {margin-top:0;padding-top:0;}
.bottom {margin-bottom:0;padding-bottom:0;}
/* forms.css */
label {font-weight:bold;}
fieldset {padding:0 1.4em 1.4em 1.4em;margin:0 0 1.5em 0;border:1px solid #ccc;}
legend {font-weight:bold;font-size:1.2em;margin-top:-0.2em;margin-bottom:1em;}
fieldset, #IE8#HACK {padding-top:1.4em;}
legend, #IE8#HACK {margin-top:0;margin-bottom:0;}
input[type=text], input[type=password], input.text, input.title, textarea {background-color:#fff;border:1px solid #bbb;}
input[type=text]:focus, input[type=password]:focus, input.text:focus, input.title:focus, textarea:focus {border-color:#666;}
select {background-color:#fff;border-width:1px;border-style:solid;}
view release on metacpan or search on metacpan
#ifndef IVSIZE
#  ifdef LONGSIZE
#    define IVSIZE LONGSIZE
#  else
#    define IVSIZE 4 /* A bold guess, but the best we can make. */
#  endif
#endif
#ifndef UVTYPE
#  define UVTYPE                         unsigned IVTYPE
#endif
view release on metacpan or search on metacpan
t/rdf/content.rdf view on Meta::CPAN
  <d:Description>The New England Science Fiction Association runs an annual convention, Boskone, and a small press, NESFA Press.</d:Description>
</ExternalPage>
<ExternalPage about="http://www.atlantic.net/~jcd/">
  <d:Title>The Keepers of Forever</d:Title>
  <d:Description>Online copy of science fiction novel too bold for  traditional print publishers. A blend of hard  science, space opera, and erotica. Download free.  Visit site for reader comments & downloads.</d:Description>
</ExternalPage>
<ExternalPage about="http://www.dragoncon.org/">
  <d:Title>Dragon*Con</d:Title>
  <d:Description>Large convention for SF, fantasy, horror, comics, and game fans, held annually in Atlanta, Georgia, USA.</d:Description>
view release on metacpan or search on metacpan
lib/Catalyst/Helper/Firebug.pm view on Meta::CPAN
    color: DarkGreen;
}
.objectBox-object {
    color: DarkGreen;
    font-weight: bold;
}
/************************************************************************************************/
.logRow-info,
lib/Catalyst/Helper/Firebug.pm view on Meta::CPAN
    position: absolute;
    right: 4px;
    top: 2px;
    padding-left: 8px;
    font-family: Lucida Grande, sans-serif;
    font-weight: bold;
    color: #0000FF;
}
/************************************************************************************************/
lib/Catalyst/Helper/Firebug.pm view on Meta::CPAN
.propertyNameCell {
    vertical-align: top;
}
.propertyName {
    font-weight: bold;
}
__firebug.html__
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
view release on metacpan or search on metacpan
lib/Catalyst/Action/Serialize/SimpleExcel.pm view on Meta::CPAN
        my $entity = {
            sheets => [
                {
                    name => 'Books',
                    header => ['Author', 'Title'], # will be bold
                    rows => \@books,
                },
                {
                    name => 'Authors',
                    header => ['First Name', 'Middle Name', 'Last Name'],
lib/Catalyst/Action/Serialize/SimpleExcel.pm view on Meta::CPAN
Required. The array of arrays of rows.
=head2 header
Optional, an array for the first line of the sheet, which will be in bold.
=head2 column_widths
Optional, the widths in characters of the columns. Otherwise the widths are
calculated automatically from the data and header.
lib/Catalyst/Action/Serialize/SimpleExcel.pm view on Meta::CPAN
    my @auto_widths;
# Write Header
    if (exists $sheet->{header}) {
        my $header_format = $workbook->add_format;
        $header_format->set_bold;
        for my $header (@{ $sheet->{header} }) {
            $auto_widths[$col] = length $header
                if $auto_widths[$col] < length $header;
            $worksheet->write($row, $col++, $header, $header_format);
view release on metacpan or search on metacpan
lib/Catalyst/Action/Serialize/SimpleXLSX.pm view on Meta::CPAN
Required. The array of arrays of rows.
=head2 header
Optional, an array for the first line of the sheet, which will be in bold.
=head2 column_widths
Optional, the widths in characters of the columns. Otherwise the widths are
calculated automatically from the data and header.
lib/Catalyst/Action/Serialize/SimpleXLSX.pm view on Meta::CPAN
  my @auto_widths;
  # Write Header
  if ( exists $sheet->{header} ) {
    my $header_format = $workbook->add_format;
    $header_format->set_bold;
    for my $header ( @{ $sheet->{header} } ) {
      if (defined $auto_widths[$col] && $auto_widths[$col] < length $header) {
        $auto_widths[$col] = length $header;
      }
      $worksheet->write( $row, $col++, $header, $header_format );
view release on metacpan or search on metacpan
t/mechanize/lib/Test/Wizard.pm view on Meta::CPAN
# Tests utilities for Wizard
#
# DESCRIPTION
#   Description
# # AUTHORS
#   Pavel Boldin (davinchi), <boldin.pavel@gmail.com>
#
#========================================================================
package Test::Wizard;
view release on metacpan or search on metacpan
t/var/eg_src/stylesheets/normalize.css view on Meta::CPAN
abbr[title] {
    border-bottom: 1px dotted;
}
/**
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
*/
b,
strong {
    font-weight: bold;
}
/**
* Address styling not present in Safari 5 and Chrome.
*/