1cd1ec0d0SGreg Roach/** 2cd1ec0d0SGreg Roach * webtrees: online genealogy 3*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 4cd1ec0d0SGreg Roach * This program is free software: you can redistribute it and/or modify 5cd1ec0d0SGreg Roach * it under the terms of the GNU General Public License as published by 6cd1ec0d0SGreg Roach * the Free Software Foundation, either version 3 of the License, or 7cd1ec0d0SGreg Roach * (at your option) any later version. 8cd1ec0d0SGreg Roach * This program is distributed in the hope that it will be useful, 9cd1ec0d0SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 10cd1ec0d0SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11cd1ec0d0SGreg Roach * GNU General Public License for more details. 12cd1ec0d0SGreg Roach * You should have received a copy of the GNU General Public License 13cd1ec0d0SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 14cd1ec0d0SGreg Roach */ 15cd1ec0d0SGreg Roach 16cd1ec0d0SGreg Roach/* 17cd1ec0d0SGreg Roach * Surname lists 18cd1ec0d0SGreg Roach */ 19cd1ec0d0SGreg Roach.wt-surnames-tag-cloud { 20cd1ec0d0SGreg Roach text-align: center; 21cd1ec0d0SGreg Roach} 22cd1ec0d0SGreg Roach 23cd1ec0d0SGreg Roach.wt-surnames-tag-cloud-item { 24cd1ec0d0SGreg Roach white-space: nowrap; 25cd1ec0d0SGreg Roach} 26cd1ec0d0SGreg Roach 27cd1ec0d0SGreg Roach.wt-surnames-column-list { 28cd1ec0d0SGreg Roach columns: 15rem; 29cd1ec0d0SGreg Roach column-rule: solid thin gray; 30cd1ec0d0SGreg Roach border: solid thin gray; 31cd1ec0d0SGreg Roach padding: 0 1rem; 32cd1ec0d0SGreg Roach} 33