xref: /webtrees/resources/css/_mime-type-icons.css (revision d11be7027e34e3121be11cc025421873364403f9)
1242a7862SGreg Roach/**
2242a7862SGreg Roach * webtrees: online genealogy
3*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
4242a7862SGreg Roach * This program is free software: you can redistribute it and/or modify
5242a7862SGreg Roach * it under the terms of the GNU General Public License as published by
6242a7862SGreg Roach * the Free Software Foundation, either version 3 of the License, or
7242a7862SGreg Roach * (at your option) any later version.
8242a7862SGreg Roach * This program is distributed in the hope that it will be useful,
9242a7862SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
10242a7862SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11242a7862SGreg Roach * GNU General Public License for more details.
12242a7862SGreg Roach * You should have received a copy of the GNU General Public License
13242a7862SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
14242a7862SGreg Roach */
15242a7862SGreg Roach
16242a7862SGreg Roach/*
17242a7862SGreg Roach * Icons for file types
18242a7862SGreg Roach *
19242a7862SGreg Roach * Icons made by Zlatko Najdenovski
20242a7862SGreg Roach * https://www.flaticon.com/packs/file-formats-3"
21242a7862SGreg Roach * Creative Commons BY 3.0
22242a7862SGreg Roach */
23242a7862SGreg Roach.wt-mime {
24242a7862SGreg Roach    background: url(images/mime.svg);
25242a7862SGreg Roach    display: inline-block;
26242a7862SGreg Roach    width: 48px;
27242a7862SGreg Roach    height: 48px;
28242a7862SGreg Roach}
29242a7862SGreg Roach
30242a7862SGreg Roach.wt-mime-application-pdf {
31242a7862SGreg Roach    background: url(images/mime-application-pdf.svg);
32242a7862SGreg Roach}
33242a7862SGreg Roach
34242a7862SGreg Roach.wt-mime-audio {
35242a7862SGreg Roach    background: url(images/mime-audio.svg);
36242a7862SGreg Roach}
37242a7862SGreg Roach
38242a7862SGreg Roach.wt-mime-text {
39242a7862SGreg Roach    background: url(images/mime-text.svg);
40242a7862SGreg Roach}
41242a7862SGreg Roach
42242a7862SGreg Roach.wt-mime-text-html {
43242a7862SGreg Roach    background: url(images/mime-text-html.svg);
44242a7862SGreg Roach}
45242a7862SGreg Roach
46242a7862SGreg Roach.wt-mime-video {
47242a7862SGreg Roach    background: url(images/mime-video.svg);
48242a7862SGreg Roach}
49242a7862SGreg Roach
50