1234567891011121314151617181920212223242526272829303132333435363738 |
- /*
- * Sapphire
- *
- * Copyright (C) 2018 Alyssa Rosenzweig
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
- *
- */
- /* Emoji stylesheet preferring Noto Color Emoji for non-old-Firefox */
- @font-face {
- font-family: sapphire-emoji;
- /* Create emoji variant */
- src: local('Noto Color Emoji'),
- local('Apple Color Emoji'),
- local('Android Emoji'),
- local(Symbola);
- /* Bind to the emoji range */
- unicode-range: U+1F300-1F5FF, U+1F600-1F64F, U+1F680-1F6FF, U+2600-27FF;
- }
|