Created
May 14, 2012 15:28
-
-
Save andynu/2694578 to your computer and use it in GitHub Desktop.
Generate css for Glyphicons Pro.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# | |
# Generate css for the pro glyphicons. | |
# Run this script in the glyphicons_pro/glyphicons/png folder | |
# from the purchased zip file. | |
# | |
# see http://glyphicons.com/ for purchase/license information. | |
# | |
render = (ARGV.include? "--html") ? :html : :css | |
Dir["*.png"].sort.each do |file| | |
# e.g. file="glyphicons_157_show_lines.png" | |
title,index,*name = file.split /_/ | |
name = name.join "_" | |
name,ext = name.split /\./ | |
css_class = name.gsub(/_/,'-').gsub(/\+/,'-plus').gsub(/@/,'-') | |
width, height = IO.read(file)[0x10..0x18].unpack('NN') | |
if render == :css | |
puts <<-CSS | |
.icon-pro-#{css_class} { | |
background:url('/images/glyphicons/png/#{file}') 0 0 no-repeat; | |
height: #{height}px; | |
line-height: #{height}px; | |
width: #{width}px; | |
} | |
CSS | |
end | |
if render == :html | |
puts "<div><i class='icon-pro-#{css_class}'></i>icon-pro-#{css_class}</div>" | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.icon-pro-glass { | |
background:url('/images/glyphicons/png/glyphicons_000_glass.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-glass-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 44px; | |
} | |
.icon-pro-leaf { | |
background:url('/images/glyphicons/png/glyphicons_001_leaf.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 24px; | |
} | |
.icon-pro-leaf-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 48px; | |
} | |
.icon-pro-dog { | |
background:url('/images/glyphicons/png/glyphicons_002_dog.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 26px; | |
} | |
.icon-pro-dog-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 52px; | |
} | |
.icon-pro-user { | |
background:url('/images/glyphicons/png/glyphicons_003_user.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 23px; | |
} | |
.icon-pro-user-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 45px; | |
line-height: 45px; | |
width: 46px; | |
} | |
.icon-pro-girl { | |
background:url('/images/glyphicons/png/glyphicons_004_girl.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 22px; | |
} | |
.icon-pro-girl-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 44px; | |
} | |
.icon-pro-car { | |
background:url('/images/glyphicons/png/glyphicons_005_car.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 26px; | |
} | |
.icon-pro-car-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 52px; | |
} | |
.icon-pro-user-add { | |
background:url('/images/glyphicons/png/glyphicons_006_user_add.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 28px; | |
} | |
.icon-pro-user-add-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 45px; | |
line-height: 45px; | |
width: 54px; | |
} | |
.icon-pro-user-remove { | |
background:url('/images/glyphicons/png/glyphicons_007_user_remove.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 26px; | |
} | |
.icon-pro-user-remove-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 45px; | |
line-height: 45px; | |
width: 52px; | |
} | |
.icon-pro-film { | |
background:url('/images/glyphicons/png/glyphicons_008_film.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 22px; | |
} | |
.icon-pro-film-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 44px; | |
} | |
.icon-pro-magic { | |
background:url('/images/glyphicons/png/glyphicons_009_magic.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-magic-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 48px; | |
} | |
.icon-pro-envelope { | |
background:url('/images/glyphicons/png/glyphicons_010_envelope.png') 0 0 no-repeat; | |
height: 16px; | |
line-height: 16px; | |
width: 24px; | |
} | |
.icon-pro-envelope-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 32px; | |
line-height: 32px; | |
width: 48px; | |
} | |
.icon-pro-camera { | |
background:url('/images/glyphicons/png/glyphicons_011_camera.png') 0 0 no-repeat; | |
height: 20px; | |
line-height: 20px; | |
width: 26px; | |
} | |
.icon-pro-camera-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 40px; | |
line-height: 40px; | |
width: 52px; | |
} | |
.icon-pro-heart { | |
background:url('/images/glyphicons/png/glyphicons_012_heart.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 24px; | |
} | |
.icon-pro-heart-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 48px; | |
} | |
.icon-pro-beach-umbrella { | |
background:url('/images/glyphicons/png/glyphicons_013_beach_umbrella.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 25px; | |
} | |
.icon-pro-beach-umbrella-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 50px; | |
} | |
.icon-pro-train { | |
background:url('/images/glyphicons/png/glyphicons_014_train.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 20px; | |
} | |
.icon-pro-train-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 54px; | |
line-height: 54px; | |
width: 40px; | |
} | |
.icon-pro-print { | |
background:url('/images/glyphicons/png/glyphicons_015_print.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-print-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-bin { | |
background:url('/images/glyphicons/png/glyphicons_016_bin.png') 0 0 no-repeat; | |
height: 28px; | |
line-height: 28px; | |
width: 20px; | |
} | |
.icon-pro-bin-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 55px; | |
line-height: 55px; | |
width: 38px; | |
} | |
.icon-pro-music { | |
background:url('/images/glyphicons/png/glyphicons_017_music.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 21px; | |
} | |
.icon-pro-music-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 41px; | |
} | |
.icon-pro-note { | |
background:url('/images/glyphicons/png/glyphicons_018_note.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 18px; | |
} | |
.icon-pro-note-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 35px; | |
} | |
.icon-pro-cogwheel { | |
background:url('/images/glyphicons/png/glyphicons_019_cogwheel.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-cogwheel-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 46px; | |
} | |
.icon-pro-home { | |
background:url('/images/glyphicons/png/glyphicons_020_home.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 27px; | |
} | |
.icon-pro-home-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 52px; | |
line-height: 52px; | |
width: 55px; | |
} | |
.icon-pro-snowflake { | |
background:url('/images/glyphicons/png/glyphicons_021_snowflake.png') 0 0 no-repeat; | |
height: 28px; | |
line-height: 28px; | |
width: 28px; | |
} | |
.icon-pro-snowflake-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 56px; | |
line-height: 56px; | |
width: 56px; | |
} | |
.icon-pro-fire { | |
background:url('/images/glyphicons/png/glyphicons_022_fire.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 20px; | |
} | |
.icon-pro-fire-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 52px; | |
line-height: 52px; | |
width: 41px; | |
} | |
.icon-pro-cogwheels { | |
background:url('/images/glyphicons/png/glyphicons_023_cogwheels.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-cogwheels-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 51px; | |
line-height: 51px; | |
width: 51px; | |
} | |
.icon-pro-parents { | |
background:url('/images/glyphicons/png/glyphicons_024_parents.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 32px; | |
} | |
.icon-pro-parents-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 66px; | |
} | |
.icon-pro-binoculars { | |
background:url('/images/glyphicons/png/glyphicons_025_binoculars.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-binoculars-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-road { | |
background:url('/images/glyphicons/png/glyphicons_026_road.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 28px; | |
} | |
.icon-pro-road-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 56px; | |
} | |
.icon-pro-search { | |
background:url('/images/glyphicons/png/glyphicons_027_search.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-search-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-cars { | |
background:url('/images/glyphicons/png/glyphicons_028_cars.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 36px; | |
} | |
.icon-pro-cars-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 72px; | |
} | |
.icon-pro-notes-2 { | |
background:url('/images/glyphicons/png/glyphicons_029_notes_2.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 20px; | |
} | |
.icon-pro-notes-2-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 54px; | |
line-height: 54px; | |
width: 40px; | |
} | |
.icon-pro-pencil { | |
background:url('/images/glyphicons/png/glyphicons_030_pencil.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 25px; | |
} | |
.icon-pro-pencil-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-bus { | |
background:url('/images/glyphicons/png/glyphicons_031_bus.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 32px; | |
} | |
.icon-pro-bus-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 64px; | |
} | |
.icon-pro-wifi-alt { | |
background:url('/images/glyphicons/png/glyphicons_032_wifi_alt.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-wifi-alt-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 51px; | |
line-height: 51px; | |
width: 52px; | |
} | |
.icon-pro-luggage { | |
background:url('/images/glyphicons/png/glyphicons_033_luggage.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 20px; | |
} | |
.icon-pro-luggage-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 54px; | |
line-height: 54px; | |
width: 40px; | |
} | |
.icon-pro-old-man { | |
background:url('/images/glyphicons/png/glyphicons_034_old_man.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 23px; | |
} | |
.icon-pro-old-man-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 46px; | |
} | |
.icon-pro-woman { | |
background:url('/images/glyphicons/png/glyphicons_035_woman.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 22px; | |
} | |
.icon-pro-woman-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 44px; | |
} | |
.icon-pro-file { | |
background:url('/images/glyphicons/png/glyphicons_036_file.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 19px; | |
} | |
.icon-pro-file-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 34px; | |
} | |
.icon-pro-credit { | |
background:url('/images/glyphicons/png/glyphicons_037_credit.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 26px; | |
} | |
.icon-pro-credit-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 52px; | |
} | |
.icon-pro-airplane { | |
background:url('/images/glyphicons/png/glyphicons_038_airplane.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 24px; | |
} | |
.icon-pro-airplane-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 48px; | |
} | |
.icon-pro-notes { | |
background:url('/images/glyphicons/png/glyphicons_039_notes.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 20px; | |
} | |
.icon-pro-notes-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 40px; | |
} | |
.icon-pro-stats { | |
background:url('/images/glyphicons/png/glyphicons_040_stats.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 26px; | |
} | |
.icon-pro-stats-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 51px; | |
line-height: 51px; | |
width: 52px; | |
} | |
.icon-pro-charts { | |
background:url('/images/glyphicons/png/glyphicons_041_charts.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 27px; | |
} | |
.icon-pro-charts-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 54px; | |
} | |
.icon-pro-pie-chart { | |
background:url('/images/glyphicons/png/glyphicons_042_pie_chart.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 26px; | |
} | |
.icon-pro-pie-chart-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 47px; | |
line-height: 47px; | |
width: 50px; | |
} | |
.icon-pro-group { | |
background:url('/images/glyphicons/png/glyphicons_043_group.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 35px; | |
} | |
.icon-pro-group-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 68px; | |
} | |
.icon-pro-keys { | |
background:url('/images/glyphicons/png/glyphicons_044_keys.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 24px; | |
} | |
.icon-pro-keys-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 52px; | |
line-height: 52px; | |
width: 48px; | |
} | |
.icon-pro-calendar { | |
background:url('/images/glyphicons/png/glyphicons_045_calendar.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 23px; | |
} | |
.icon-pro-calendar-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 46px; | |
} | |
.icon-pro-router { | |
background:url('/images/glyphicons/png/glyphicons_046_router.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 27px; | |
} | |
.icon-pro-router-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 51px; | |
line-height: 51px; | |
width: 54px; | |
} | |
.icon-pro-camera-small { | |
background:url('/images/glyphicons/png/glyphicons_047_camera_small.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 22px; | |
} | |
.icon-pro-camera-small-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 45px; | |
} | |
.icon-pro-dislikes { | |
background:url('/images/glyphicons/png/glyphicons_048_dislikes.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 26px; | |
} | |
.icon-pro-dislikes-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 47px; | |
line-height: 47px; | |
width: 51px; | |
} | |
.icon-pro-star { | |
background:url('/images/glyphicons/png/glyphicons_049_star.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 25px; | |
} | |
.icon-pro-star-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 50px; | |
} | |
.icon-pro-link { | |
background:url('/images/glyphicons/png/glyphicons_050_link.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 21px; | |
} | |
.icon-pro-link-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 42px; | |
} | |
.icon-pro-eye-open { | |
background:url('/images/glyphicons/png/glyphicons_051_eye_open.png') 0 0 no-repeat; | |
height: 17px; | |
line-height: 17px; | |
width: 31px; | |
} | |
.icon-pro-eye-open-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 33px; | |
line-height: 33px; | |
width: 61px; | |
} | |
.icon-pro-eye-close { | |
background:url('/images/glyphicons/png/glyphicons_052_eye_close.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 31px; | |
} | |
.icon-pro-eye-close-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 60px; | |
} | |
.icon-pro-alarm { | |
background:url('/images/glyphicons/png/glyphicons_053_alarm.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 28px; | |
} | |
.icon-pro-alarm-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 51px; | |
} | |
.icon-pro-clock { | |
background:url('/images/glyphicons/png/glyphicons_054_clock.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-clock-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-stopwatch { | |
background:url('/images/glyphicons/png/glyphicons_055_stopwatch.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 23px; | |
} | |
.icon-pro-stopwatch-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 53px; | |
line-height: 53px; | |
width: 46px; | |
} | |
.icon-pro-projector { | |
background:url('/images/glyphicons/png/glyphicons_056_projector.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 28px; | |
} | |
.icon-pro-projector-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 56px; | |
} | |
.icon-pro-history { | |
background:url('/images/glyphicons/png/glyphicons_057_history.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 25px; | |
} | |
.icon-pro-history-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 49px; | |
} | |
.icon-pro-truck { | |
background:url('/images/glyphicons/png/glyphicons_058_truck.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 32px; | |
} | |
.icon-pro-truck-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 56px; | |
line-height: 56px; | |
width: 64px; | |
} | |
.icon-pro-cargo { | |
background:url('/images/glyphicons/png/glyphicons_059_cargo.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 25px; | |
} | |
.icon-pro-cargo-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 52px; | |
line-height: 52px; | |
width: 50px; | |
} | |
.icon-pro-compass { | |
background:url('/images/glyphicons/png/glyphicons_060_compass.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-compass-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-keynote { | |
background:url('/images/glyphicons/png/glyphicons_061_keynote.png') 0 0 no-repeat; | |
height: 30px; | |
line-height: 30px; | |
width: 20px; | |
} | |
.icon-pro-keynote-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 59px; | |
line-height: 59px; | |
width: 40px; | |
} | |
.icon-pro-attach { | |
background:url('/images/glyphicons/png/glyphicons_062_attach.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 26px; | |
} | |
.icon-pro-attach-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 47px; | |
line-height: 47px; | |
width: 51px; | |
} | |
.icon-pro-power { | |
background:url('/images/glyphicons/png/glyphicons_063_power.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 22px; | |
} | |
.icon-pro-power-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 47px; | |
line-height: 47px; | |
width: 43px; | |
} | |
.icon-pro-lightbulb { | |
background:url('/images/glyphicons/png/glyphicons_064_lightbulb.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 20px; | |
} | |
.icon-pro-lightbulb-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 51px; | |
line-height: 51px; | |
width: 38px; | |
} | |
.icon-pro-tag { | |
background:url('/images/glyphicons/png/glyphicons_065_tag.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-tag-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-tags { | |
background:url('/images/glyphicons/png/glyphicons_066_tags.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 30px; | |
} | |
.icon-pro-tags-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 60px; | |
} | |
.icon-pro-cleaning { | |
background:url('/images/glyphicons/png/glyphicons_067_cleaning.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 24px; | |
} | |
.icon-pro-cleaning-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 48px; | |
} | |
.icon-pro-ruller { | |
background:url('/images/glyphicons/png/glyphicons_068_ruller.png') 0 0 no-repeat; | |
height: 14px; | |
line-height: 14px; | |
width: 27px; | |
} | |
.icon-pro-ruller-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 28px; | |
line-height: 28px; | |
width: 54px; | |
} | |
.icon-pro-gift { | |
background:url('/images/glyphicons/png/glyphicons_069_gift.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 24px; | |
} | |
.icon-pro-gift-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 48px; | |
} | |
.icon-pro-umbrella { | |
background:url('/images/glyphicons/png/glyphicons_070_umbrella.png') 0 0 no-repeat; | |
height: 28px; | |
line-height: 28px; | |
width: 26px; | |
} | |
.icon-pro-umbrella-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 56px; | |
line-height: 56px; | |
width: 52px; | |
} | |
.icon-pro-book { | |
background:url('/images/glyphicons/png/glyphicons_071_book.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 22px; | |
} | |
.icon-pro-book-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 44px; | |
} | |
.icon-pro-bookmark { | |
background:url('/images/glyphicons/png/glyphicons_072_bookmark.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 16px; | |
} | |
.icon-pro-bookmark-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 47px; | |
line-height: 47px; | |
width: 31px; | |
} | |
.icon-pro-signal { | |
background:url('/images/glyphicons/png/glyphicons_073_signal.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 31px; | |
} | |
.icon-pro-signal-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 45px; | |
line-height: 45px; | |
width: 63px; | |
} | |
.icon-pro-cup { | |
background:url('/images/glyphicons/png/glyphicons_074_cup.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 22px; | |
} | |
.icon-pro-cup-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 44px; | |
} | |
.icon-pro-stroller { | |
background:url('/images/glyphicons/png/glyphicons_075_stroller.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 25px; | |
} | |
.icon-pro-stroller-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-headphones { | |
background:url('/images/glyphicons/png/glyphicons_076_headphones.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-headphones-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-headset { | |
background:url('/images/glyphicons/png/glyphicons_077_headset.png') 0 0 no-repeat; | |
height: 28px; | |
line-height: 28px; | |
width: 24px; | |
} | |
.icon-pro-headset-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 56px; | |
line-height: 56px; | |
width: 48px; | |
} | |
.icon-pro-warning-sign { | |
background:url('/images/glyphicons/png/glyphicons_078_warning_sign.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 29px; | |
} | |
.icon-pro-warning-sign-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 56px; | |
} | |
.icon-pro-signal { | |
background:url('/images/glyphicons/png/glyphicons_079_signal.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-signal-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-retweet { | |
background:url('/images/glyphicons/png/glyphicons_080_retweet.png') 0 0 no-repeat; | |
height: 15px; | |
line-height: 15px; | |
width: 30px; | |
} | |
.icon-pro-retweet-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 31px; | |
line-height: 31px; | |
width: 60px; | |
} | |
.icon-pro-refresh { | |
background:url('/images/glyphicons/png/glyphicons_081_refresh.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 25px; | |
} | |
.icon-pro-refresh-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-roundabout { | |
background:url('/images/glyphicons/png/glyphicons_082_roundabout.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 27px; | |
} | |
.icon-pro-roundabout-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 53px; | |
line-height: 53px; | |
width: 54px; | |
} | |
.icon-pro-random { | |
background:url('/images/glyphicons/png/glyphicons_083_random.png') 0 0 no-repeat; | |
height: 20px; | |
line-height: 20px; | |
width: 28px; | |
} | |
.icon-pro-random-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 40px; | |
line-height: 40px; | |
width: 55px; | |
} | |
.icon-pro-heat { | |
background:url('/images/glyphicons/png/glyphicons_084_heat.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 29px; | |
} | |
.icon-pro-heat-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 58px; | |
} | |
.icon-pro-repeat { | |
background:url('/images/glyphicons/png/glyphicons_085_repeat.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 24px; | |
} | |
.icon-pro-repeat-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 47px; | |
} | |
.icon-pro-display { | |
background:url('/images/glyphicons/png/glyphicons_086_display.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 28px; | |
} | |
.icon-pro-display-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 56px; | |
} | |
.icon-pro-log-book { | |
background:url('/images/glyphicons/png/glyphicons_087_log_book.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 22px; | |
} | |
.icon-pro-log-book-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 44px; | |
} | |
.icon-pro-adress-book { | |
background:url('/images/glyphicons/png/glyphicons_088_adress_book.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 22px; | |
} | |
.icon-pro-adress-book-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 44px; | |
} | |
.icon-pro-magnet { | |
background:url('/images/glyphicons/png/glyphicons_089_magnet.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 21px; | |
} | |
.icon-pro-magnet-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 47px; | |
line-height: 47px; | |
width: 42px; | |
} | |
.icon-pro-table { | |
background:url('/images/glyphicons/png/glyphicons_090_table.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-table-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-adjust { | |
background:url('/images/glyphicons/png/glyphicons_091_adjust.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-adjust-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 46px; | |
} | |
.icon-pro-tint { | |
background:url('/images/glyphicons/png/glyphicons_092_tint.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 23px; | |
} | |
.icon-pro-tint-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 52px; | |
line-height: 52px; | |
width: 44px; | |
} | |
.icon-pro-crop { | |
background:url('/images/glyphicons/png/glyphicons_093_crop.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-crop-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 52px; | |
line-height: 52px; | |
width: 52px; | |
} | |
.icon-pro-vector-path-square { | |
background:url('/images/glyphicons/png/glyphicons_094_vector_path_square.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-vector-path-square-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-vector-path-circle { | |
background:url('/images/glyphicons/png/glyphicons_095_vector_path_circle.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-vector-path-circle-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-vector-path-polygon { | |
background:url('/images/glyphicons/png/glyphicons_096_vector_path_polygon.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 26px; | |
} | |
.icon-pro-vector-path-polygon-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 52px; | |
} | |
.icon-pro-vector-path-line { | |
background:url('/images/glyphicons/png/glyphicons_097_vector_path_line.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-vector-path-line-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-vector-path-curve { | |
background:url('/images/glyphicons/png/glyphicons_098_vector_path_curve.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-vector-path-curve-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-vector-path-all { | |
background:url('/images/glyphicons/png/glyphicons_099_vector_path_all.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-vector-path-all-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-font { | |
background:url('/images/glyphicons/png/glyphicons_100_font.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 27px; | |
} | |
.icon-pro-font-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 54px; | |
} | |
.icon-pro-italic { | |
background:url('/images/glyphicons/png/glyphicons_101_italic.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 14px; | |
} | |
.icon-pro-italic-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 27px; | |
} | |
.icon-pro-bold { | |
background:url('/images/glyphicons/png/glyphicons_102_bold.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 19px; | |
} | |
.icon-pro-bold-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 38px; | |
} | |
.icon-pro-text-underline { | |
background:url('/images/glyphicons/png/glyphicons_103_text_underline.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 20px; | |
} | |
.icon-pro-text-underline-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 40px; | |
} | |
.icon-pro-text-strike { | |
background:url('/images/glyphicons/png/glyphicons_104_text_strike.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 20px; | |
} | |
.icon-pro-text-strike-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 40px; | |
} | |
.icon-pro-text-height { | |
background:url('/images/glyphicons/png/glyphicons_105_text_height.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 26px; | |
} | |
.icon-pro-text-height-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 52px; | |
} | |
.icon-pro-text-width { | |
background:url('/images/glyphicons/png/glyphicons_106_text_width.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 22px; | |
} | |
.icon-pro-text-width-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 42px; | |
} | |
.icon-pro-text-resize { | |
background:url('/images/glyphicons/png/glyphicons_107_text_resize.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-text-resize-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 52px; | |
line-height: 52px; | |
width: 52px; | |
} | |
.icon-pro-left-indent { | |
background:url('/images/glyphicons/png/glyphicons_108_left_indent.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 24px; | |
} | |
.icon-pro-left-indent-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 48px; | |
} | |
.icon-pro-right-indent { | |
background:url('/images/glyphicons/png/glyphicons_109_right_indent.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 24px; | |
} | |
.icon-pro-right-indent-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 48px; | |
} | |
.icon-pro-align-left { | |
background:url('/images/glyphicons/png/glyphicons_110_align_left.png') 0 0 no-repeat; | |
height: 21px; | |
line-height: 21px; | |
width: 24px; | |
} | |
.icon-pro-align-left-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 42px; | |
line-height: 42px; | |
width: 48px; | |
} | |
.icon-pro-align-center { | |
background:url('/images/glyphicons/png/glyphicons_111_align_center.png') 0 0 no-repeat; | |
height: 21px; | |
line-height: 21px; | |
width: 24px; | |
} | |
.icon-pro-align-center-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 42px; | |
line-height: 42px; | |
width: 48px; | |
} | |
.icon-pro-align-right { | |
background:url('/images/glyphicons/png/glyphicons_112_align_right.png') 0 0 no-repeat; | |
height: 21px; | |
line-height: 21px; | |
width: 24px; | |
} | |
.icon-pro-align-right-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 42px; | |
line-height: 42px; | |
width: 48px; | |
} | |
.icon-pro-justify { | |
background:url('/images/glyphicons/png/glyphicons_113_justify.png') 0 0 no-repeat; | |
height: 21px; | |
line-height: 21px; | |
width: 24px; | |
} | |
.icon-pro-justify-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 42px; | |
line-height: 42px; | |
width: 48px; | |
} | |
.icon-pro-list { | |
background:url('/images/glyphicons/png/glyphicons_114_list.png') 0 0 no-repeat; | |
height: 21px; | |
line-height: 21px; | |
width: 24px; | |
} | |
.icon-pro-list-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 42px; | |
line-height: 42px; | |
width: 48px; | |
} | |
.icon-pro-text-smaller { | |
background:url('/images/glyphicons/png/glyphicons_115_text_smaller.png') 0 0 no-repeat; | |
height: 16px; | |
line-height: 16px; | |
width: 22px; | |
} | |
.icon-pro-text-smaller-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 32px; | |
line-height: 32px; | |
width: 44px; | |
} | |
.icon-pro-text-bigger { | |
background:url('/images/glyphicons/png/glyphicons_116_text_bigger.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 24px; | |
} | |
.icon-pro-text-bigger-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 48px; | |
} | |
.icon-pro-embed { | |
background:url('/images/glyphicons/png/glyphicons_117_embed.png') 0 0 no-repeat; | |
height: 14px; | |
line-height: 14px; | |
width: 30px; | |
} | |
.icon-pro-embed-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 29px; | |
line-height: 29px; | |
width: 60px; | |
} | |
.icon-pro-embed-close { | |
background:url('/images/glyphicons/png/glyphicons_118_embed_close.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 30px; | |
} | |
.icon-pro-embed-close-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 60px; | |
} | |
.icon-pro-adjust { | |
background:url('/images/glyphicons/png/glyphicons_119_adjust.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 23px; | |
} | |
.icon-pro-adjust-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 46px; | |
} | |
.icon-pro-message-full { | |
background:url('/images/glyphicons/png/glyphicons_120_message_full.png') 0 0 no-repeat; | |
height: 28px; | |
line-height: 28px; | |
width: 24px; | |
} | |
.icon-pro-message-full-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 56px; | |
line-height: 56px; | |
width: 48px; | |
} | |
.icon-pro-message-empty { | |
background:url('/images/glyphicons/png/glyphicons_121_message_empty.png') 0 0 no-repeat; | |
height: 28px; | |
line-height: 28px; | |
width: 24px; | |
} | |
.icon-pro-message-empty-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 56px; | |
line-height: 56px; | |
width: 48px; | |
} | |
.icon-pro-message-in { | |
background:url('/images/glyphicons/png/glyphicons_122_message_in.png') 0 0 no-repeat; | |
height: 28px; | |
line-height: 28px; | |
width: 24px; | |
} | |
.icon-pro-message-in-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 56px; | |
line-height: 56px; | |
width: 48px; | |
} | |
.icon-pro-message-out { | |
background:url('/images/glyphicons/png/glyphicons_123_message_out.png') 0 0 no-repeat; | |
height: 28px; | |
line-height: 28px; | |
width: 24px; | |
} | |
.icon-pro-message-out-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 56px; | |
line-height: 56px; | |
width: 48px; | |
} | |
.icon-pro-message-plus { | |
background:url('/images/glyphicons/png/glyphicons_124_message_plus.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 29px; | |
} | |
.icon-pro-message-plus-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 58px; | |
} | |
.icon-pro-message-minus { | |
background:url('/images/glyphicons/png/glyphicons_125_message_minus.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 29px; | |
} | |
.icon-pro-message-minus-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 58px; | |
} | |
.icon-pro-message-ban { | |
background:url('/images/glyphicons/png/glyphicons_126_message_ban.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 29px; | |
} | |
.icon-pro-message-ban-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 58px; | |
} | |
.icon-pro-message-flag { | |
background:url('/images/glyphicons/png/glyphicons_127_message_flag.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 27px; | |
} | |
.icon-pro-message-flag-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 54px; | |
} | |
.icon-pro-message-lock { | |
background:url('/images/glyphicons/png/glyphicons_128_message_lock.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 28px; | |
} | |
.icon-pro-message-lock-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 56px; | |
} | |
.icon-pro-message-new { | |
background:url('/images/glyphicons/png/glyphicons_129_message_new.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 28px; | |
} | |
.icon-pro-message-new-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 56px; | |
} | |
.icon-pro-inbox { | |
background:url('/images/glyphicons/png/glyphicons_130_inbox.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 24px; | |
} | |
.icon-pro-inbox-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 48px; | |
} | |
.icon-pro-inbox-plus { | |
background:url('/images/glyphicons/png/glyphicons_131_inbox_plus.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 27px; | |
} | |
.icon-pro-inbox-plus-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 54px; | |
line-height: 54px; | |
width: 54px; | |
} | |
.icon-pro-inbox-minus { | |
background:url('/images/glyphicons/png/glyphicons_132_inbox_minus.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 27px; | |
} | |
.icon-pro-inbox-minus-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 54px; | |
line-height: 54px; | |
width: 54px; | |
} | |
.icon-pro-inbox-lock { | |
background:url('/images/glyphicons/png/glyphicons_133_inbox_lock.png') 0 0 no-repeat; | |
height: 28px; | |
line-height: 28px; | |
width: 26px; | |
} | |
.icon-pro-inbox-lock-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 56px; | |
line-height: 56px; | |
width: 52px; | |
} | |
.icon-pro-inbox-in { | |
background:url('/images/glyphicons/png/glyphicons_134_inbox_in.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 24px; | |
} | |
.icon-pro-inbox-in-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 52px; | |
line-height: 52px; | |
width: 48px; | |
} | |
.icon-pro-inbox-out { | |
background:url('/images/glyphicons/png/glyphicons_135_inbox_out.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 24px; | |
} | |
.icon-pro-inbox-out-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 52px; | |
line-height: 52px; | |
width: 48px; | |
} | |
.icon-pro-computer-locked { | |
background:url('/images/glyphicons/png/glyphicons_136_computer_locked.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 28px; | |
} | |
.icon-pro-computer-locked-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 56px; | |
} | |
.icon-pro-computer-service { | |
background:url('/images/glyphicons/png/glyphicons_137_computer_service.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 28px; | |
} | |
.icon-pro-computer-service-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 56px; | |
} | |
.icon-pro-computer-proces { | |
background:url('/images/glyphicons/png/glyphicons_138_computer_proces.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 28px; | |
} | |
.icon-pro-computer-proces-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 56px; | |
} | |
.icon-pro-phone { | |
background:url('/images/glyphicons/png/glyphicons_139_phone.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 15px; | |
} | |
.icon-pro-phone-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 30px; | |
} | |
.icon-pro-database-lock { | |
background:url('/images/glyphicons/png/glyphicons_140_database_lock.png') 0 0 no-repeat; | |
height: 28px; | |
line-height: 28px; | |
width: 26px; | |
} | |
.icon-pro-database-lock-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 56px; | |
line-height: 56px; | |
width: 52px; | |
} | |
.icon-pro-database-plus { | |
background:url('/images/glyphicons/png/glyphicons_141_database_plus.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 27px; | |
} | |
.icon-pro-database-plus-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 54px; | |
line-height: 54px; | |
width: 54px; | |
} | |
.icon-pro-database-minus { | |
background:url('/images/glyphicons/png/glyphicons_142_database_minus.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 27px; | |
} | |
.icon-pro-database-minus-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 54px; | |
line-height: 54px; | |
width: 54px; | |
} | |
.icon-pro-database-ban { | |
background:url('/images/glyphicons/png/glyphicons_143_database_ban.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 26px; | |
} | |
.icon-pro-database-ban-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 54px; | |
line-height: 54px; | |
width: 52px; | |
} | |
.icon-pro-folder-open { | |
background:url('/images/glyphicons/png/glyphicons_144_folder_open.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 30px; | |
} | |
.icon-pro-folder-open-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 60px; | |
} | |
.icon-pro-folder-plus { | |
background:url('/images/glyphicons/png/glyphicons_145_folder_plus.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 29px; | |
} | |
.icon-pro-folder-plus-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 58px; | |
} | |
.icon-pro-folder-minus { | |
background:url('/images/glyphicons/png/glyphicons_146_folder_minus.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 29px; | |
} | |
.icon-pro-folder-minus-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 58px; | |
} | |
.icon-pro-folder-lock { | |
background:url('/images/glyphicons/png/glyphicons_147_folder_lock.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 28px; | |
} | |
.icon-pro-folder-lock-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 52px; | |
line-height: 52px; | |
width: 56px; | |
} | |
.icon-pro-folder-flag { | |
background:url('/images/glyphicons/png/glyphicons_148_folder_flag.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 27px; | |
} | |
.icon-pro-folder-flag-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 51px; | |
line-height: 51px; | |
width: 55px; | |
} | |
.icon-pro-folder-new { | |
background:url('/images/glyphicons/png/glyphicons_149_folder_new.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 28px; | |
} | |
.icon-pro-folder-new-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 56px; | |
} | |
.icon-pro-check { | |
background:url('/images/glyphicons/png/glyphicons_150_check.png') 0 0 no-repeat; | |
height: 18px; | |
line-height: 18px; | |
width: 22px; | |
} | |
.icon-pro-check-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 37px; | |
line-height: 37px; | |
width: 44px; | |
} | |
.icon-pro-edit { | |
background:url('/images/glyphicons/png/glyphicons_151_edit.png') 0 0 no-repeat; | |
height: 21px; | |
line-height: 21px; | |
width: 24px; | |
} | |
.icon-pro-edit-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 41px; | |
line-height: 41px; | |
width: 47px; | |
} | |
.icon-pro-new-window { | |
background:url('/images/glyphicons/png/glyphicons_152_new_window.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 26px; | |
} | |
.icon-pro-new-window-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 53px; | |
} | |
.icon-pro-more-windows { | |
background:url('/images/glyphicons/png/glyphicons_153_more_windows.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 23px; | |
} | |
.icon-pro-more-windows-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 45px; | |
line-height: 45px; | |
width: 45px; | |
} | |
.icon-pro-show-big-thumbnails { | |
background:url('/images/glyphicons/png/glyphicons_154_show_big_thumbnails.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 22px; | |
} | |
.icon-pro-show-big-thumbnails-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 44px; | |
} | |
.icon-pro-show-thumbnails { | |
background:url('/images/glyphicons/png/glyphicons_155_show_thumbnails.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 22px; | |
} | |
.icon-pro-show-thumbnails-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 44px; | |
} | |
.icon-pro-show-thumbnails-with-lines { | |
background:url('/images/glyphicons/png/glyphicons_156_show_thumbnails_with_lines.png') 0 0 no-repeat; | |
height: 15px; | |
line-height: 15px; | |
width: 24px; | |
} | |
.icon-pro-show-thumbnails-with-lines-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 30px; | |
line-height: 30px; | |
width: 48px; | |
} | |
.icon-pro-show-lines { | |
background:url('/images/glyphicons/png/glyphicons_157_show_lines.png') 0 0 no-repeat; | |
height: 15px; | |
line-height: 15px; | |
width: 24px; | |
} | |
.icon-pro-show-lines-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 30px; | |
line-height: 30px; | |
width: 48px; | |
} | |
.icon-pro-playlist { | |
background:url('/images/glyphicons/png/glyphicons_158_playlist.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 29px; | |
} | |
.icon-pro-playlist-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 57px; | |
} | |
.icon-pro-picture { | |
background:url('/images/glyphicons/png/glyphicons_159_picture.png') 0 0 no-repeat; | |
height: 20px; | |
line-height: 20px; | |
width: 24px; | |
} | |
.icon-pro-picture-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 38px; | |
line-height: 38px; | |
width: 48px; | |
} | |
.icon-pro-imac { | |
background:url('/images/glyphicons/png/glyphicons_160_imac.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 26px; | |
} | |
.icon-pro-imac-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 52px; | |
} | |
.icon-pro-macbook { | |
background:url('/images/glyphicons/png/glyphicons_161_macbook.png') 0 0 no-repeat; | |
height: 15px; | |
line-height: 15px; | |
width: 28px; | |
} | |
.icon-pro-macbook-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 31px; | |
line-height: 31px; | |
width: 54px; | |
} | |
.icon-pro-ipad { | |
background:url('/images/glyphicons/png/glyphicons_162_ipad.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 20px; | |
} | |
.icon-pro-ipad-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 53px; | |
line-height: 53px; | |
width: 40px; | |
} | |
.icon-pro-iphone { | |
background:url('/images/glyphicons/png/glyphicons_163_iphone.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 14px; | |
} | |
.icon-pro-iphone-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 26px; | |
} | |
.icon-pro-iphone-transfer { | |
background:url('/images/glyphicons/png/glyphicons_164_iphone_transfer.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 29px; | |
} | |
.icon-pro-iphone-transfer-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 54px; | |
} | |
.icon-pro-iphone-exchange { | |
background:url('/images/glyphicons/png/glyphicons_165_iphone_exchange.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 29px; | |
} | |
.icon-pro-iphone-exchange-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 54px; | |
} | |
.icon-pro-ipod { | |
background:url('/images/glyphicons/png/glyphicons_166_ipod.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 14px; | |
} | |
.icon-pro-ipod-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 26px; | |
} | |
.icon-pro-ipod-shuffle { | |
background:url('/images/glyphicons/png/glyphicons_167_ipod_shuffle.png') 0 0 no-repeat; | |
height: 13px; | |
line-height: 13px; | |
width: 15px; | |
} | |
.icon-pro-ipod-shuffle-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 30px; | |
} | |
.icon-pro-ear-plugs { | |
background:url('/images/glyphicons/png/glyphicons_168_ear_plugs.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 20px; | |
} | |
.icon-pro-ear-plugs-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 40px; | |
} | |
.icon-pro-albums { | |
background:url('/images/glyphicons/png/glyphicons_169_albums.png') 0 0 no-repeat; | |
height: 18px; | |
line-height: 18px; | |
width: 28px; | |
} | |
.icon-pro-albums-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 36px; | |
line-height: 36px; | |
width: 56px; | |
} | |
.icon-pro-step-backward { | |
background:url('/images/glyphicons/png/glyphicons_170_step_backward.png') 0 0 no-repeat; | |
height: 18px; | |
line-height: 18px; | |
width: 14px; | |
} | |
.icon-pro-step-backward-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 34px; | |
line-height: 34px; | |
width: 27px; | |
} | |
.icon-pro-fast-backward { | |
background:url('/images/glyphicons/png/glyphicons_171_fast_backward.png') 0 0 no-repeat; | |
height: 18px; | |
line-height: 18px; | |
width: 25px; | |
} | |
.icon-pro-fast-backward-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 34px; | |
line-height: 34px; | |
width: 48px; | |
} | |
.icon-pro-rewind { | |
background:url('/images/glyphicons/png/glyphicons_172_rewind.png') 0 0 no-repeat; | |
height: 18px; | |
line-height: 18px; | |
width: 23px; | |
} | |
.icon-pro-rewind-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 34px; | |
line-height: 34px; | |
width: 44px; | |
} | |
.icon-pro-play { | |
background:url('/images/glyphicons/png/glyphicons_173_play.png') 0 0 no-repeat; | |
height: 18px; | |
line-height: 18px; | |
width: 16px; | |
} | |
.icon-pro-play-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 34px; | |
line-height: 34px; | |
width: 33px; | |
} | |
.icon-pro-pause { | |
background:url('/images/glyphicons/png/glyphicons_174_pause.png') 0 0 no-repeat; | |
height: 16px; | |
line-height: 16px; | |
width: 10px; | |
} | |
.icon-pro-pause-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 32px; | |
line-height: 32px; | |
width: 21px; | |
} | |
.icon-pro-stop { | |
background:url('/images/glyphicons/png/glyphicons_175_stop.png') 0 0 no-repeat; | |
height: 14px; | |
line-height: 14px; | |
width: 14px; | |
} | |
.icon-pro-stop-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 28px; | |
line-height: 28px; | |
width: 28px; | |
} | |
.icon-pro-forward { | |
background:url('/images/glyphicons/png/glyphicons_176_forward.png') 0 0 no-repeat; | |
height: 18px; | |
line-height: 18px; | |
width: 23px; | |
} | |
.icon-pro-forward-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 34px; | |
line-height: 34px; | |
width: 44px; | |
} | |
.icon-pro-fast-forward { | |
background:url('/images/glyphicons/png/glyphicons_177_fast_forward.png') 0 0 no-repeat; | |
height: 18px; | |
line-height: 18px; | |
width: 25px; | |
} | |
.icon-pro-fast-forward-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 34px; | |
line-height: 34px; | |
width: 48px; | |
} | |
.icon-pro-step-forward { | |
background:url('/images/glyphicons/png/glyphicons_178_step_forward.png') 0 0 no-repeat; | |
height: 18px; | |
line-height: 18px; | |
width: 14px; | |
} | |
.icon-pro-step-forward-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 34px; | |
line-height: 34px; | |
width: 27px; | |
} | |
.icon-pro-eject { | |
background:url('/images/glyphicons/png/glyphicons_179_eject.png') 0 0 no-repeat; | |
height: 17px; | |
line-height: 17px; | |
width: 18px; | |
} | |
.icon-pro-eject-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 31px; | |
line-height: 31px; | |
width: 35px; | |
} | |
.icon-pro-facetime-video { | |
background:url('/images/glyphicons/png/glyphicons_180_facetime_video.png') 0 0 no-repeat; | |
height: 16px; | |
line-height: 16px; | |
width: 24px; | |
} | |
.icon-pro-facetime-video-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 32px; | |
line-height: 32px; | |
width: 48px; | |
} | |
.icon-pro-download-alt { | |
background:url('/images/glyphicons/png/glyphicons_181_download_alt.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-download-alt-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-mute { | |
background:url('/images/glyphicons/png/glyphicons_182_mute.png') 0 0 no-repeat; | |
height: 16px; | |
line-height: 16px; | |
width: 22px; | |
} | |
.icon-pro-mute-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 31px; | |
line-height: 31px; | |
width: 43px; | |
} | |
.icon-pro-volume-down { | |
background:url('/images/glyphicons/png/glyphicons_183_volume_down.png') 0 0 no-repeat; | |
height: 16px; | |
line-height: 16px; | |
width: 16px; | |
} | |
.icon-pro-volume-down-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 31px; | |
line-height: 31px; | |
width: 31px; | |
} | |
.icon-pro-volume-up { | |
background:url('/images/glyphicons/png/glyphicons_184_volume_up.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 24px; | |
} | |
.icon-pro-volume-up-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 47px; | |
} | |
.icon-pro-screenshot { | |
background:url('/images/glyphicons/png/glyphicons_185_screenshot.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 27px; | |
} | |
.icon-pro-screenshot-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 54px; | |
line-height: 54px; | |
width: 54px; | |
} | |
.icon-pro-move { | |
background:url('/images/glyphicons/png/glyphicons_186_move.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-move-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-more { | |
background:url('/images/glyphicons/png/glyphicons_187_more.png') 0 0 no-repeat; | |
height: 7px; | |
line-height: 7px; | |
width: 22px; | |
} | |
.icon-pro-more-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 13px; | |
line-height: 13px; | |
width: 44px; | |
} | |
.icon-pro-brightness-reduce { | |
background:url('/images/glyphicons/png/glyphicons_188_brightness_reduce.png') 0 0 no-repeat; | |
height: 20px; | |
line-height: 20px; | |
width: 20px; | |
} | |
.icon-pro-brightness-reduce-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 40px; | |
line-height: 40px; | |
width: 39px; | |
} | |
.icon-pro-brightness-increase { | |
background:url('/images/glyphicons/png/glyphicons_189_brightness_increase.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-brightness-increase-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-circle-plus { | |
background:url('/images/glyphicons/png/glyphicons_190_circle_plus.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-circle-plus-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-circle-minus { | |
background:url('/images/glyphicons/png/glyphicons_191_circle_minus.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-circle-minus-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-circle-remove { | |
background:url('/images/glyphicons/png/glyphicons_192_circle_remove.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-circle-remove-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-circle-ok { | |
background:url('/images/glyphicons/png/glyphicons_193_circle_ok.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-circle-ok-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-circle-question-mark { | |
background:url('/images/glyphicons/png/glyphicons_194_circle_question_mark.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-circle-question-mark-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-circle-info { | |
background:url('/images/glyphicons/png/glyphicons_195_circle_info.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-circle-info-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-circle-exclamation-mark { | |
background:url('/images/glyphicons/png/glyphicons_196_circle_exclamation_mark.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-circle-exclamation-mark-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-remove { | |
background:url('/images/glyphicons/png/glyphicons_197_remove.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-remove-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-ok { | |
background:url('/images/glyphicons/png/glyphicons_198_ok.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-ok-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-ban { | |
background:url('/images/glyphicons/png/glyphicons_199_ban.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-ban-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-download { | |
background:url('/images/glyphicons/png/glyphicons_200_download.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-download-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-upload { | |
background:url('/images/glyphicons/png/glyphicons_201_upload.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-upload-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-shopping-cart { | |
background:url('/images/glyphicons/png/glyphicons_202_shopping_cart.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 26px; | |
} | |
.icon-pro-shopping-cart-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 50px; | |
} | |
.icon-pro-lock { | |
background:url('/images/glyphicons/png/glyphicons_203_lock.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 21px; | |
} | |
.icon-pro-lock-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 51px; | |
line-height: 51px; | |
width: 42px; | |
} | |
.icon-pro-unlock { | |
background:url('/images/glyphicons/png/glyphicons_204_unlock.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 21px; | |
} | |
.icon-pro-unlock-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 57px; | |
line-height: 57px; | |
width: 42px; | |
} | |
.icon-pro-electricity { | |
background:url('/images/glyphicons/png/glyphicons_205_electricity.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 11px; | |
} | |
.icon-pro-electricity-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 23px; | |
} | |
.icon-pro-ok-2 { | |
background:url('/images/glyphicons/png/glyphicons_206_ok_2.png') 0 0 no-repeat; | |
height: 19px; | |
line-height: 19px; | |
width: 25px; | |
} | |
.icon-pro-ok-2-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 39px; | |
line-height: 39px; | |
width: 48px; | |
} | |
.icon-pro-remove-2 { | |
background:url('/images/glyphicons/png/glyphicons_207_remove_2.png') 0 0 no-repeat; | |
height: 18px; | |
line-height: 18px; | |
width: 18px; | |
} | |
.icon-pro-remove-2-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 38px; | |
line-height: 38px; | |
width: 37px; | |
} | |
.icon-pro-cart-out { | |
background:url('/images/glyphicons/png/glyphicons_208_cart_out.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 26px; | |
} | |
.icon-pro-cart-out-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-cart-in { | |
background:url('/images/glyphicons/png/glyphicons_209_cart_in.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 26px; | |
} | |
.icon-pro-cart-in-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 50px; | |
} | |
.icon-pro-left-arrow { | |
background:url('/images/glyphicons/png/glyphicons_210_left_arrow.png') 0 0 no-repeat; | |
height: 18px; | |
line-height: 18px; | |
width: 20px; | |
} | |
.icon-pro-left-arrow-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 34px; | |
line-height: 34px; | |
width: 40px; | |
} | |
.icon-pro-right-arrow { | |
background:url('/images/glyphicons/png/glyphicons_211_right_arrow.png') 0 0 no-repeat; | |
height: 18px; | |
line-height: 18px; | |
width: 20px; | |
} | |
.icon-pro-right-arrow-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 34px; | |
line-height: 34px; | |
width: 40px; | |
} | |
.icon-pro-down-arrow { | |
background:url('/images/glyphicons/png/glyphicons_212_down_arrow.png') 0 0 no-repeat; | |
height: 20px; | |
line-height: 20px; | |
width: 18px; | |
} | |
.icon-pro-down-arrow-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 40px; | |
line-height: 40px; | |
width: 34px; | |
} | |
.icon-pro-up-arrow { | |
background:url('/images/glyphicons/png/glyphicons_213_up_arrow.png') 0 0 no-repeat; | |
height: 20px; | |
line-height: 20px; | |
width: 18px; | |
} | |
.icon-pro-up-arrow-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 40px; | |
line-height: 40px; | |
width: 34px; | |
} | |
.icon-pro-resize-small { | |
background:url('/images/glyphicons/png/glyphicons_214_resize_small.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-resize-small-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-resize-full { | |
background:url('/images/glyphicons/png/glyphicons_215_resize_full.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-resize-full-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-circle-arrow-left { | |
background:url('/images/glyphicons/png/glyphicons_216_circle_arrow_left.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-circle-arrow-left-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-circle-arrow-right { | |
background:url('/images/glyphicons/png/glyphicons_217_circle_arrow_right.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-circle-arrow-right-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-circle-arrow-top { | |
background:url('/images/glyphicons/png/glyphicons_218_circle_arrow_top.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-circle-arrow-top-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-circle-arrow-down { | |
background:url('/images/glyphicons/png/glyphicons_219_circle_arrow_down.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-circle-arrow-down-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-play-button { | |
background:url('/images/glyphicons/png/glyphicons_220_play_button.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-play-button-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-unshare { | |
background:url('/images/glyphicons/png/glyphicons_221_unshare.png') 0 0 no-repeat; | |
height: 18px; | |
line-height: 18px; | |
width: 24px; | |
} | |
.icon-pro-unshare-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 34px; | |
line-height: 34px; | |
width: 46px; | |
} | |
.icon-pro-share { | |
background:url('/images/glyphicons/png/glyphicons_222_share.png') 0 0 no-repeat; | |
height: 18px; | |
line-height: 18px; | |
width: 24px; | |
} | |
.icon-pro-share-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 34px; | |
line-height: 34px; | |
width: 46px; | |
} | |
.icon-pro-thin-right-arrow { | |
background:url('/images/glyphicons/png/glyphicons_223_thin_right_arrow.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 15px; | |
} | |
.icon-pro-thin-right-arrow-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 28px; | |
} | |
.icon-pro-thin-arrow-left { | |
background:url('/images/glyphicons/png/glyphicons_224_thin_arrow_left.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 15px; | |
} | |
.icon-pro-thin-arrow-left-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 28px; | |
} | |
.icon-pro-bluetooth { | |
background:url('/images/glyphicons/png/glyphicons_225_bluetooth.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 14px; | |
} | |
.icon-pro-bluetooth-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 29px; | |
} | |
.icon-pro-euro { | |
background:url('/images/glyphicons/png/glyphicons_226_euro.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 22px; | |
} | |
.icon-pro-euro-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 47px; | |
line-height: 47px; | |
width: 43px; | |
} | |
.icon-pro-usd { | |
background:url('/images/glyphicons/png/glyphicons_227_usd.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 17px; | |
} | |
.icon-pro-usd-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 52px; | |
line-height: 52px; | |
width: 34px; | |
} | |
.icon-pro-bp { | |
background:url('/images/glyphicons/png/glyphicons_228_bp.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 17px; | |
} | |
.icon-pro-bp-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 33px; | |
} | |
.icon-pro-retweet-2 { | |
background:url('/images/glyphicons/png/glyphicons_229_retweet_2.png') 0 0 no-repeat; | |
height: 21px; | |
line-height: 21px; | |
width: 33px; | |
} | |
.icon-pro-retweet-2-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 42px; | |
line-height: 42px; | |
width: 65px; | |
} | |
.icon-pro-moon { | |
background:url('/images/glyphicons/png/glyphicons_230_moon.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 22px; | |
} | |
.icon-pro-moon-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 43px; | |
} | |
.icon-pro-sun { | |
background:url('/images/glyphicons/png/glyphicons_231_sun.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-sun-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-cloud { | |
background:url('/images/glyphicons/png/glyphicons_232_cloud.png') 0 0 no-repeat; | |
height: 17px; | |
line-height: 17px; | |
width: 27px; | |
} | |
.icon-pro-cloud-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 34px; | |
line-height: 34px; | |
width: 55px; | |
} | |
.icon-pro-direction { | |
background:url('/images/glyphicons/png/glyphicons_233_direction.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 26px; | |
} | |
.icon-pro-direction-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 51px; | |
line-height: 51px; | |
width: 51px; | |
} | |
.icon-pro-brush { | |
background:url('/images/glyphicons/png/glyphicons_234_brush.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 25px; | |
} | |
.icon-pro-brush-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 45px; | |
line-height: 45px; | |
width: 50px; | |
} | |
.icon-pro-pen { | |
background:url('/images/glyphicons/png/glyphicons_235_pen.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-pen-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 47px; | |
line-height: 47px; | |
width: 47px; | |
} | |
.icon-pro-zoom-in { | |
background:url('/images/glyphicons/png/glyphicons_236_zoom_in.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 25px; | |
} | |
.icon-pro-zoom-in-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-zoom-out { | |
background:url('/images/glyphicons/png/glyphicons_237_zoom_out.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 25px; | |
} | |
.icon-pro-zoom-out-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-pin { | |
background:url('/images/glyphicons/png/glyphicons_238_pin.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 10px; | |
} | |
.icon-pro-pin-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 20px; | |
} | |
.icon-pro-riflescope { | |
background:url('/images/glyphicons/png/glyphicons_239_riflescope.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 25px; | |
} | |
.icon-pro-riflescope-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 51px; | |
} | |
.icon-pro-rotation-lock { | |
background:url('/images/glyphicons/png/glyphicons_240_rotation_lock.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 27px; | |
} | |
.icon-pro-rotation-lock-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 54px; | |
} | |
.icon-pro-flash { | |
background:url('/images/glyphicons/png/glyphicons_241_flash.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 14px; | |
} | |
.icon-pro-flash-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 27px; | |
} | |
.icon-pro-google-maps { | |
background:url('/images/glyphicons/png/glyphicons_242_google_maps.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 15px; | |
} | |
.icon-pro-google-maps-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 30px; | |
} | |
.icon-pro-anchor { | |
background:url('/images/glyphicons/png/glyphicons_243_anchor.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 24px; | |
} | |
.icon-pro-anchor-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 48px; | |
} | |
.icon-pro-conversation { | |
background:url('/images/glyphicons/png/glyphicons_244_conversation.png') 0 0 no-repeat; | |
height: 18px; | |
line-height: 18px; | |
width: 25px; | |
} | |
.icon-pro-conversation-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 37px; | |
line-height: 37px; | |
width: 52px; | |
} | |
.icon-pro-chat { | |
background:url('/images/glyphicons/png/glyphicons_245_chat.png') 0 0 no-repeat; | |
height: 19px; | |
line-height: 19px; | |
width: 24px; | |
} | |
.icon-pro-chat-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 39px; | |
line-height: 39px; | |
width: 49px; | |
} | |
.icon-pro-male { | |
background:url('/images/glyphicons/png/glyphicons_246_male.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 22px; | |
} | |
.icon-pro-male-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 44px; | |
} | |
.icon-pro-female { | |
background:url('/images/glyphicons/png/glyphicons_247_female.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 16px; | |
} | |
.icon-pro-female-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 53px; | |
line-height: 53px; | |
width: 31px; | |
} | |
.icon-pro-asterisk { | |
background:url('/images/glyphicons/png/glyphicons_248_asterisk.png') 0 0 no-repeat; | |
height: 20px; | |
line-height: 20px; | |
width: 20px; | |
} | |
.icon-pro-asterisk-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 40px; | |
line-height: 40px; | |
width: 40px; | |
} | |
.icon-pro-divide { | |
background:url('/images/glyphicons/png/glyphicons_249_divide.png') 0 0 no-repeat; | |
height: 16px; | |
line-height: 16px; | |
width: 18px; | |
} | |
.icon-pro-divide-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 32px; | |
line-height: 32px; | |
width: 36px; | |
} | |
.icon-pro-snorkel-diving { | |
background:url('/images/glyphicons/png/glyphicons_250_snorkel_diving.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 27px; | |
} | |
.icon-pro-snorkel-diving-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 55px; | |
} | |
.icon-pro-scuba-diving { | |
background:url('/images/glyphicons/png/glyphicons_251_scuba_diving.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 27px; | |
} | |
.icon-pro-scuba-diving-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 55px; | |
} | |
.icon-pro-oxygen-bottle { | |
background:url('/images/glyphicons/png/glyphicons_252_oxygen_bottle.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 22px; | |
} | |
.icon-pro-oxygen-bottle-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 55px; | |
line-height: 55px; | |
width: 44px; | |
} | |
.icon-pro-fins { | |
background:url('/images/glyphicons/png/glyphicons_253_fins.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 31px; | |
} | |
.icon-pro-fins-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 53px; | |
line-height: 53px; | |
width: 62px; | |
} | |
.icon-pro-fishes { | |
background:url('/images/glyphicons/png/glyphicons_254_fishes.png') 0 0 no-repeat; | |
height: 30px; | |
line-height: 30px; | |
width: 28px; | |
} | |
.icon-pro-fishes-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 60px; | |
line-height: 60px; | |
width: 57px; | |
} | |
.icon-pro-boat { | |
background:url('/images/glyphicons/png/glyphicons_255_boat.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-boat-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 47px; | |
} | |
.icon-pro-delete-point { | |
background:url('/images/glyphicons/png/glyphicons_256_delete_point.png') 0 0 no-repeat; | |
height: 17px; | |
line-height: 17px; | |
width: 26px; | |
} | |
.icon-pro-delete-point-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 35px; | |
line-height: 35px; | |
width: 52px; | |
} | |
.icon-pro-sheriffs--star { | |
background:url('/images/glyphicons/png/glyphicons_257_sheriffs_-star.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 24px; | |
} | |
.icon-pro-sheriffs--star-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 53px; | |
line-height: 53px; | |
width: 49px; | |
} | |
.icon-pro-qrcode { | |
background:url('/images/glyphicons/png/glyphicons_258_qrcode.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-qrcode-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-barcode { | |
background:url('/images/glyphicons/png/glyphicons_259_barcode.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-barcode-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-pool { | |
background:url('/images/glyphicons/png/glyphicons_260_pool.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-pool-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-buoy { | |
background:url('/images/glyphicons/png/glyphicons_261_buoy.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-buoy-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 48px; | |
} | |
.icon-pro-spade { | |
background:url('/images/glyphicons/png/glyphicons_262_spade.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-spade-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 49px; | |
} | |
.icon-pro-bank { | |
background:url('/images/glyphicons/png/glyphicons_263_bank.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-bank-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 49px; | |
} | |
.icon-pro-vcard { | |
background:url('/images/glyphicons/png/glyphicons_264_vcard.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 22px; | |
} | |
.icon-pro-vcard-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 44px; | |
} | |
.icon-pro-electrical-plug { | |
background:url('/images/glyphicons/png/glyphicons_265_electrical_plug.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 18px; | |
} | |
.icon-pro-electrical-plug-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 51px; | |
line-height: 51px; | |
width: 37px; | |
} | |
.icon-pro-flag { | |
background:url('/images/glyphicons/png/glyphicons_266_flag.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 21px; | |
} | |
.icon-pro-flag-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 51px; | |
line-height: 51px; | |
width: 42px; | |
} | |
.icon-pro-credit-card { | |
background:url('/images/glyphicons/png/glyphicons_267_credit_card.png') 0 0 no-repeat; | |
height: 19px; | |
line-height: 19px; | |
width: 26px; | |
} | |
.icon-pro-credit-card-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 38px; | |
line-height: 38px; | |
width: 52px; | |
} | |
.icon-pro-keyboard-wireless { | |
background:url('/images/glyphicons/png/glyphicons_268_keyboard_wireless.png') 0 0 no-repeat; | |
height: 19px; | |
line-height: 19px; | |
width: 27px; | |
} | |
.icon-pro-keyboard-wireless-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 38px; | |
line-height: 38px; | |
width: 54px; | |
} | |
.icon-pro-keyboard-wired { | |
background:url('/images/glyphicons/png/glyphicons_269_keyboard_wired.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 27px; | |
} | |
.icon-pro-keyboard-wired-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 54px; | |
} | |
.icon-pro-shield { | |
background:url('/images/glyphicons/png/glyphicons_270_shield.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 22px; | |
} | |
.icon-pro-shield-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 44px; | |
} | |
.icon-pro-ring { | |
background:url('/images/glyphicons/png/glyphicons_271_ring.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 21px; | |
} | |
.icon-pro-ring-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 41px; | |
} | |
.icon-pro-cake { | |
background:url('/images/glyphicons/png/glyphicons_272_cake.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 22px; | |
} | |
.icon-pro-cake-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 45px; | |
} | |
.icon-pro-drink { | |
background:url('/images/glyphicons/png/glyphicons_273_drink.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 23px; | |
} | |
.icon-pro-drink-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 46px; | |
} | |
.icon-pro-beer { | |
background:url('/images/glyphicons/png/glyphicons_274_beer.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 23px; | |
} | |
.icon-pro-beer-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 46px; | |
} | |
.icon-pro-fast-food { | |
background:url('/images/glyphicons/png/glyphicons_275_fast_food.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 28px; | |
} | |
.icon-pro-fast-food-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 56px; | |
} | |
.icon-pro-cutlery { | |
background:url('/images/glyphicons/png/glyphicons_276_cutlery.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 13px; | |
} | |
.icon-pro-cutlery-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 27px; | |
} | |
.icon-pro-pizza { | |
background:url('/images/glyphicons/png/glyphicons_277_pizza.png') 0 0 no-repeat; | |
height: 29px; | |
line-height: 29px; | |
width: 26px; | |
} | |
.icon-pro-pizza-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 58px; | |
line-height: 58px; | |
width: 50px; | |
} | |
.icon-pro-birthday-cake { | |
background:url('/images/glyphicons/png/glyphicons_278_birthday_cake.png') 0 0 no-repeat; | |
height: 29px; | |
line-height: 29px; | |
width: 26px; | |
} | |
.icon-pro-birthday-cake-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 58px; | |
line-height: 58px; | |
width: 52px; | |
} | |
.icon-pro-tablet { | |
background:url('/images/glyphicons/png/glyphicons_279_tablet.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 25px; | |
} | |
.icon-pro-tablet-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 50px; | |
} | |
.icon-pro-settings { | |
background:url('/images/glyphicons/png/glyphicons_280_settings.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-settings-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 49px; | |
} | |
.icon-pro-bullets { | |
background:url('/images/glyphicons/png/glyphicons_281_bullets.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 27px; | |
} | |
.icon-pro-bullets-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 53px; | |
} | |
.icon-pro-cardio { | |
background:url('/images/glyphicons/png/glyphicons_282_cardio.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 25px; | |
} | |
.icon-pro-cardio-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 51px; | |
line-height: 51px; | |
width: 51px; | |
} | |
.icon-pro-t-shirt { | |
background:url('/images/glyphicons/png/glyphicons_283_t-shirt.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 28px; | |
} | |
.icon-pro-t-shirt-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 47px; | |
line-height: 47px; | |
width: 56px; | |
} | |
.icon-pro-pants { | |
background:url('/images/glyphicons/png/glyphicons_284_pants.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 19px; | |
} | |
.icon-pro-pants-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 39px; | |
} | |
.icon-pro-sweater { | |
background:url('/images/glyphicons/png/glyphicons_285_sweater.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 29px; | |
} | |
.icon-pro-sweater-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 59px; | |
} | |
.icon-pro-fabric { | |
background:url('/images/glyphicons/png/glyphicons_286_fabric.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 27px; | |
} | |
.icon-pro-fabric-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 43px; | |
line-height: 43px; | |
width: 53px; | |
} | |
.icon-pro-leather { | |
background:url('/images/glyphicons/png/glyphicons_287_leather.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 23px; | |
} | |
.icon-pro-leather-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 47px; | |
line-height: 47px; | |
width: 47px; | |
} | |
.icon-pro-scissors { | |
background:url('/images/glyphicons/png/glyphicons_288_scissors.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 24px; | |
} | |
.icon-pro-scissors-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 55px; | |
line-height: 55px; | |
width: 45px; | |
} | |
.icon-pro-podium { | |
background:url('/images/glyphicons/png/glyphicons_289_podium.png') 0 0 no-repeat; | |
height: 21px; | |
line-height: 21px; | |
width: 28px; | |
} | |
.icon-pro-podium-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 42px; | |
line-height: 42px; | |
width: 56px; | |
} | |
.icon-pro-skull { | |
background:url('/images/glyphicons/png/glyphicons_290_skull.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 22px; | |
} | |
.icon-pro-skull-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 41px; | |
} | |
.icon-pro-celebration { | |
background:url('/images/glyphicons/png/glyphicons_291_celebration.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 24px; | |
} | |
.icon-pro-celebration-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 48px; | |
} | |
.icon-pro-tea-kettle { | |
background:url('/images/glyphicons/png/glyphicons_292_tea_kettle.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 26px; | |
} | |
.icon-pro-tea-kettle-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 47px; | |
line-height: 47px; | |
width: 52px; | |
} | |
.icon-pro-french-press { | |
background:url('/images/glyphicons/png/glyphicons_293_french_press.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 23px; | |
} | |
.icon-pro-french-press-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 46px; | |
} | |
.icon-pro-coffe-cup { | |
background:url('/images/glyphicons/png/glyphicons_294_coffe_cup.png') 0 0 no-repeat; | |
height: 19px; | |
line-height: 19px; | |
width: 25px; | |
} | |
.icon-pro-coffe-cup-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 38px; | |
line-height: 38px; | |
width: 50px; | |
} | |
.icon-pro-pot { | |
background:url('/images/glyphicons/png/glyphicons_295_pot.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 27px; | |
} | |
.icon-pro-pot-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 55px; | |
} | |
.icon-pro-grater { | |
background:url('/images/glyphicons/png/glyphicons_296_grater.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 18px; | |
} | |
.icon-pro-grater-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 36px; | |
} | |
.icon-pro-kettle { | |
background:url('/images/glyphicons/png/glyphicons_297_kettle.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 23px; | |
} | |
.icon-pro-kettle-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 46px; | |
} | |
.icon-pro-hospital { | |
background:url('/images/glyphicons/png/glyphicons_298_hospital.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-hospital-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-hospital-h { | |
background:url('/images/glyphicons/png/glyphicons_299_hospital_h.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-hospital-h-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-microphone { | |
background:url('/images/glyphicons/png/glyphicons_300_microphone.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 17px; | |
} | |
.icon-pro-microphone-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 51px; | |
line-height: 51px; | |
width: 35px; | |
} | |
.icon-pro-webcam { | |
background:url('/images/glyphicons/png/glyphicons_301_webcam.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 19px; | |
} | |
.icon-pro-webcam-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 47px; | |
line-height: 47px; | |
width: 36px; | |
} | |
.icon-pro-temple-christianity-church { | |
background:url('/images/glyphicons/png/glyphicons_302_temple_christianity_church.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 24px; | |
} | |
.icon-pro-temple-christianity-church-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 48px; | |
} | |
.icon-pro-temple-islam { | |
background:url('/images/glyphicons/png/glyphicons_303_temple_islam.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 25px; | |
} | |
.icon-pro-temple-islam-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 51px; | |
} | |
.icon-pro-temple-hindu { | |
background:url('/images/glyphicons/png/glyphicons_304_temple_hindu.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-temple-hindu-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-temple-buddhist { | |
background:url('/images/glyphicons/png/glyphicons_305_temple_buddhist.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 28px; | |
} | |
.icon-pro-temple-buddhist-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 56px; | |
} | |
.icon-pro-electrical-socket-eu { | |
background:url('/images/glyphicons/png/glyphicons_306_electrical_socket_eu.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 23px; | |
} | |
.icon-pro-electrical-socket-eu-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 46px; | |
} | |
.icon-pro-electrical-socket-us { | |
background:url('/images/glyphicons/png/glyphicons_307_electrical_socket_us.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 23px; | |
} | |
.icon-pro-electrical-socket-us-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 46px; | |
} | |
.icon-pro-bomb { | |
background:url('/images/glyphicons/png/glyphicons_308_bomb.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 27px; | |
} | |
.icon-pro-bomb-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 51px; | |
line-height: 51px; | |
width: 53px; | |
} | |
.icon-pro-comments { | |
background:url('/images/glyphicons/png/glyphicons_309_comments.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 24px; | |
} | |
.icon-pro-comments-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 48px; | |
} | |
.icon-pro-flower { | |
background:url('/images/glyphicons/png/glyphicons_310_flower.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 19px; | |
} | |
.icon-pro-flower-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 39px; | |
} | |
.icon-pro-baseball { | |
background:url('/images/glyphicons/png/glyphicons_311_baseball.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 25px; | |
} | |
.icon-pro-baseball-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 49px; | |
} | |
.icon-pro-rugby { | |
background:url('/images/glyphicons/png/glyphicons_312_rugby.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 23px; | |
} | |
.icon-pro-rugby-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 47px; | |
line-height: 47px; | |
width: 47px; | |
} | |
.icon-pro-ax { | |
background:url('/images/glyphicons/png/glyphicons_313_ax.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 27px; | |
} | |
.icon-pro-ax-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 53px; | |
} | |
.icon-pro-table-tennis { | |
background:url('/images/glyphicons/png/glyphicons_314_table_tennis.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-table-tennis-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 46px; | |
} | |
.icon-pro-bowling { | |
background:url('/images/glyphicons/png/glyphicons_315_bowling.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-bowling-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 46px; | |
} | |
.icon-pro-tree-conifer { | |
background:url('/images/glyphicons/png/glyphicons_316_tree_conifer.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 21px; | |
} | |
.icon-pro-tree-conifer-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 43px; | |
} | |
.icon-pro-tree-deciduous { | |
background:url('/images/glyphicons/png/glyphicons_317_tree_deciduous.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 20px; | |
} | |
.icon-pro-tree-deciduous-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 51px; | |
line-height: 51px; | |
width: 41px; | |
} | |
.icon-pro-more-items { | |
background:url('/images/glyphicons/png/glyphicons_318_more-items.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 21px; | |
} | |
.icon-pro-more-items-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 43px; | |
} | |
.icon-pro-sort { | |
background:url('/images/glyphicons/png/glyphicons_319_sort.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 25px; | |
} | |
.icon-pro-sort-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 50px; | |
line-height: 50px; | |
width: 51px; | |
} | |
.icon-pro-filter { | |
background:url('/images/glyphicons/png/glyphicons_320_filter.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 20px; | |
} | |
.icon-pro-filter-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 41px; | |
} | |
.icon-pro-gamepad { | |
background:url('/images/glyphicons/png/glyphicons_321_gamepad.png') 0 0 no-repeat; | |
height: 19px; | |
line-height: 19px; | |
width: 27px; | |
} | |
.icon-pro-gamepad-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 37px; | |
line-height: 37px; | |
width: 51px; | |
} | |
.icon-pro-playing-dices { | |
background:url('/images/glyphicons/png/glyphicons_322_playing_dices.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 27px; | |
} | |
.icon-pro-playing-dices-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 47px; | |
line-height: 47px; | |
width: 55px; | |
} | |
.icon-pro-calculator { | |
background:url('/images/glyphicons/png/glyphicons_323_calculator.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 21px; | |
} | |
.icon-pro-calculator-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 42px; | |
} | |
.icon-pro-tie { | |
background:url('/images/glyphicons/png/glyphicons_324_tie.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 11px; | |
} | |
.icon-pro-tie-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 51px; | |
line-height: 51px; | |
width: 23px; | |
} | |
.icon-pro-wallet { | |
background:url('/images/glyphicons/png/glyphicons_325_wallet.png') 0 0 no-repeat; | |
height: 20px; | |
line-height: 20px; | |
width: 25px; | |
} | |
.icon-pro-wallet-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 40px; | |
line-height: 40px; | |
width: 50px; | |
} | |
.icon-pro-share { | |
background:url('/images/glyphicons/png/glyphicons_326_share.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 22px; | |
} | |
.icon-pro-share-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 45px; | |
line-height: 45px; | |
width: 45px; | |
} | |
.icon-pro-sampler { | |
background:url('/images/glyphicons/png/glyphicons_327_sampler.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 27px; | |
} | |
.icon-pro-sampler-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 54px; | |
} | |
.icon-pro-piano { | |
background:url('/images/glyphicons/png/glyphicons_328_piano.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 23px; | |
} | |
.icon-pro-piano-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 46px; | |
} | |
.icon-pro-web-browser { | |
background:url('/images/glyphicons/png/glyphicons_329_web_browser.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 24px; | |
} | |
.icon-pro-web-browser-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 48px; | |
} | |
.icon-pro-blog { | |
background:url('/images/glyphicons/png/glyphicons_330_blog.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 21px; | |
} | |
.icon-pro-blog-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 42px; | |
} | |
.icon-pro-dashboard { | |
background:url('/images/glyphicons/png/glyphicons_331_dashboard.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-dashboard-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 49px; | |
} | |
.icon-pro-certificate { | |
background:url('/images/glyphicons/png/glyphicons_332_certificate.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 17px; | |
} | |
.icon-pro-certificate-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 51px; | |
line-height: 51px; | |
width: 35px; | |
} | |
.icon-pro-bell { | |
background:url('/images/glyphicons/png/glyphicons_333_bell.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-bell-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 45px; | |
} | |
.icon-pro-candle { | |
background:url('/images/glyphicons/png/glyphicons_334_candle.png') 0 0 no-repeat; | |
height: 25px; | |
line-height: 25px; | |
width: 20px; | |
} | |
.icon-pro-candle-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 51px; | |
line-height: 51px; | |
width: 41px; | |
} | |
.icon-pro-pin-classic { | |
background:url('/images/glyphicons/png/glyphicons_335_pin_classic.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-pin-classic-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 47px; | |
line-height: 47px; | |
width: 47px; | |
} | |
.icon-pro-iphone-shake { | |
background:url('/images/glyphicons/png/glyphicons_336_iphone_shake.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-iphone-shake-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 46px; | |
} | |
.icon-pro-pin-flag { | |
background:url('/images/glyphicons/png/glyphicons_337_pin_flag.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 30px; | |
} | |
.icon-pro-pin-flag-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 43px; | |
line-height: 43px; | |
width: 60px; | |
} | |
.icon-pro-turtle { | |
background:url('/images/glyphicons/png/glyphicons_338_turtle.png') 0 0 no-repeat; | |
height: 16px; | |
line-height: 16px; | |
width: 28px; | |
} | |
.icon-pro-turtle-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 33px; | |
line-height: 33px; | |
width: 55px; | |
} | |
.icon-pro-rabbit { | |
background:url('/images/glyphicons/png/glyphicons_339_rabbit.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 26px; | |
} | |
.icon-pro-rabbit-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 53px; | |
} | |
.icon-pro-globe { | |
background:url('/images/glyphicons/png/glyphicons_340_globe.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-globe-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 47px; | |
line-height: 47px; | |
width: 47px; | |
} | |
.icon-pro-briefcase { | |
background:url('/images/glyphicons/png/glyphicons_341_briefcase.png') 0 0 no-repeat; | |
height: 21px; | |
line-height: 21px; | |
width: 24px; | |
} | |
.icon-pro-briefcase-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 42px; | |
line-height: 42px; | |
width: 48px; | |
} | |
.icon-pro-hdd { | |
background:url('/images/glyphicons/png/glyphicons_342_hdd.png') 0 0 no-repeat; | |
height: 21px; | |
line-height: 21px; | |
width: 24px; | |
} | |
.icon-pro-hdd-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 42px; | |
line-height: 42px; | |
width: 48px; | |
} | |
.icon-pro-thumbs-up { | |
background:url('/images/glyphicons/png/glyphicons_343_thumbs_up.png') 0 0 no-repeat; | |
height: 21px; | |
line-height: 21px; | |
width: 24px; | |
} | |
.icon-pro-thumbs-up-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 42px; | |
line-height: 42px; | |
width: 48px; | |
} | |
.icon-pro-thumbs-down { | |
background:url('/images/glyphicons/png/glyphicons_344_thumbs_down.png') 0 0 no-repeat; | |
height: 21px; | |
line-height: 21px; | |
width: 24px; | |
} | |
.icon-pro-thumbs-down-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 42px; | |
line-height: 42px; | |
width: 48px; | |
} | |
.icon-pro-hand-right { | |
background:url('/images/glyphicons/png/glyphicons_345_hand_right.png') 0 0 no-repeat; | |
height: 19px; | |
line-height: 19px; | |
width: 26px; | |
} | |
.icon-pro-hand-right-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 38px; | |
line-height: 38px; | |
width: 53px; | |
} | |
.icon-pro-hand-left { | |
background:url('/images/glyphicons/png/glyphicons_346_hand_left.png') 0 0 no-repeat; | |
height: 19px; | |
line-height: 19px; | |
width: 26px; | |
} | |
.icon-pro-hand-left-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 38px; | |
line-height: 38px; | |
width: 53px; | |
} | |
.icon-pro-hand-up { | |
background:url('/images/glyphicons/png/glyphicons_347_hand_up.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 19px; | |
} | |
.icon-pro-hand-up-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 53px; | |
line-height: 53px; | |
width: 38px; | |
} | |
.icon-pro-hand-down { | |
background:url('/images/glyphicons/png/glyphicons_348_hand_down.png') 0 0 no-repeat; | |
height: 27px; | |
line-height: 27px; | |
width: 19px; | |
} | |
.icon-pro-hand-down-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 53px; | |
line-height: 53px; | |
width: 38px; | |
} | |
.icon-pro-fullscreen { | |
background:url('/images/glyphicons/png/glyphicons_349_fullscreen.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-fullscreen-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-shopping-bag { | |
background:url('/images/glyphicons/png/glyphicons_350_shopping_bag.png') 0 0 no-repeat; | |
height: 26px; | |
line-height: 26px; | |
width: 23px; | |
} | |
.icon-pro-shopping-bag-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 52px; | |
line-height: 52px; | |
width: 46px; | |
} | |
.icon-pro-book-open { | |
background:url('/images/glyphicons/png/glyphicons_351_book_open.png') 0 0 no-repeat; | |
height: 23px; | |
line-height: 23px; | |
width: 25px; | |
} | |
.icon-pro-book-open-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 46px; | |
line-height: 46px; | |
width: 50px; | |
} | |
.icon-pro-nameplate { | |
background:url('/images/glyphicons/png/glyphicons_352_nameplate.png') 0 0 no-repeat; | |
height: 21px; | |
line-height: 21px; | |
width: 24px; | |
} | |
.icon-pro-nameplate-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 42px; | |
line-height: 42px; | |
width: 48px; | |
} | |
.icon-pro-nameplate-alt { | |
background:url('/images/glyphicons/png/glyphicons_353_nameplate_alt.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 24px; | |
} | |
.icon-pro-nameplate-alt-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 48px; | |
} | |
.icon-pro-vases { | |
background:url('/images/glyphicons/png/glyphicons_354_vases.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-vases-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 49px; | |
} | |
.icon-pro-announcement { | |
background:url('/images/glyphicons/png/glyphicons_355_announcement.png') 0 0 no-repeat; | |
height: 20px; | |
line-height: 20px; | |
width: 25px; | |
} | |
.icon-pro-announcement-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 41px; | |
line-height: 41px; | |
width: 50px; | |
} | |
.icon-pro-dumbbell { | |
background:url('/images/glyphicons/png/glyphicons_356_dumbbell.png') 0 0 no-repeat; | |
height: 16px; | |
line-height: 16px; | |
width: 26px; | |
} | |
.icon-pro-dumbbell-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 32px; | |
line-height: 32px; | |
width: 52px; | |
} | |
.icon-pro-suitcase { | |
background:url('/images/glyphicons/png/glyphicons_357_suitcase.png') 0 0 no-repeat; | |
height: 22px; | |
line-height: 22px; | |
width: 24px; | |
} | |
.icon-pro-suitcase-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 44px; | |
line-height: 44px; | |
width: 48px; | |
} | |
.icon-pro-file-import { | |
background:url('/images/glyphicons/png/glyphicons_358_file_import.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 22px; | |
} | |
.icon-pro-file-import-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 45px; | |
} | |
.icon-pro-file-export { | |
background:url('/images/glyphicons/png/glyphicons_359_file_export.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 23px; | |
} | |
.icon-pro-file-export-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 49px; | |
line-height: 49px; | |
width: 45px; | |
} | |
.icon-pro-pinterest { | |
background:url('/images/glyphicons/png/glyphicons_360_pinterest.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-pinterest-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-dropbox { | |
background:url('/images/glyphicons/png/glyphicons_361_dropbox.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-dropbox-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-google-plus-alt { | |
background:url('/images/glyphicons/png/glyphicons_362_google+_alt.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-google-plus-alt-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-jolicloud { | |
background:url('/images/glyphicons/png/glyphicons_363_jolicloud.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-jolicloud-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-yahoo { | |
background:url('/images/glyphicons/png/glyphicons_364_yahoo.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-yahoo-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-blogger { | |
background:url('/images/glyphicons/png/glyphicons_365_blogger.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-blogger-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-picasa { | |
background:url('/images/glyphicons/png/glyphicons_366_picasa.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-picasa-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-amazon { | |
background:url('/images/glyphicons/png/glyphicons_367_amazon.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-amazon-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-tumblr { | |
background:url('/images/glyphicons/png/glyphicons_368_tumblr.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-tumblr-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-wordpress { | |
background:url('/images/glyphicons/png/glyphicons_369_wordpress.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-wordpress-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-instapaper { | |
background:url('/images/glyphicons/png/glyphicons_370_instapaper.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-instapaper-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-evernote { | |
background:url('/images/glyphicons/png/glyphicons_371_evernote.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-evernote-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-xing { | |
background:url('/images/glyphicons/png/glyphicons_372_xing.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-xing-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-zootool { | |
background:url('/images/glyphicons/png/glyphicons_373_zootool.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-zootool-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-dribbble { | |
background:url('/images/glyphicons/png/glyphicons_374_dribbble.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-dribbble-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-deviantart { | |
background:url('/images/glyphicons/png/glyphicons_375_deviantart.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-deviantart-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-read-it-later { | |
background:url('/images/glyphicons/png/glyphicons_376_read_it_later.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-read-it-later-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-linked-in { | |
background:url('/images/glyphicons/png/glyphicons_377_linked_in.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-linked-in-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-forrst { | |
background:url('/images/glyphicons/png/glyphicons_378_forrst.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-forrst-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-pinboard { | |
background:url('/images/glyphicons/png/glyphicons_379_pinboard.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-pinboard-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-behance { | |
background:url('/images/glyphicons/png/glyphicons_380_behance.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-behance-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-github { | |
background:url('/images/glyphicons/png/glyphicons_381_github.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-github-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-youtube { | |
background:url('/images/glyphicons/png/glyphicons_382_youtube.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-youtube-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-skitch { | |
background:url('/images/glyphicons/png/glyphicons_383_skitch.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-skitch-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-4square { | |
background:url('/images/glyphicons/png/glyphicons_384_4square.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-4square-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-quora { | |
background:url('/images/glyphicons/png/glyphicons_385_quora.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-quora-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-google-plus { | |
background:url('/images/glyphicons/png/glyphicons_386_google_plus.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-google-plus-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-spootify { | |
background:url('/images/glyphicons/png/glyphicons_387_spootify.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-spootify-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-stumbleupon { | |
background:url('/images/glyphicons/png/glyphicons_388_stumbleupon.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-stumbleupon-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-readability { | |
background:url('/images/glyphicons/png/glyphicons_389_readability.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-readability-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-facebook { | |
background:url('/images/glyphicons/png/glyphicons_390_facebook.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-facebook-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-twitter-t { | |
background:url('/images/glyphicons/png/glyphicons_391_twitter_t.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-twitter-t-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-twitter { | |
background:url('/images/glyphicons/png/glyphicons_392_twitter.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-twitter-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-buzz { | |
background:url('/images/glyphicons/png/glyphicons_393_buzz.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-buzz-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-vimeo { | |
background:url('/images/glyphicons/png/glyphicons_394_vimeo.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-vimeo-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-flickr { | |
background:url('/images/glyphicons/png/glyphicons_395_flickr.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-flickr-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-last-fm { | |
background:url('/images/glyphicons/png/glyphicons_396_last_fm.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-last-fm-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-rss { | |
background:url('/images/glyphicons/png/glyphicons_397_rss.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-rss-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-skype { | |
background:url('/images/glyphicons/png/glyphicons_398_skype.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-skype-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} | |
.icon-pro-e-mail { | |
background:url('/images/glyphicons/png/glyphicons_399_e-mail.png') 0 0 no-repeat; | |
height: 24px; | |
line-height: 24px; | |
width: 24px; | |
} | |
.icon-pro-e-mail-2x { | |
background:url('/images/glyphicons/png/[email protected]') 0 0 no-repeat; | |
height: 48px; | |
line-height: 48px; | |
width: 48px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment