xref: /webtrees/resources/css/_on-screen-keyboard.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 * On-screen keyboard, for entering characters that are not on the keyboard
18242a7862SGreg Roach */
19242a7862SGreg Roach.wt-osk {
20242a7862SGreg Roach    position: fixed;
21242a7862SGreg Roach    z-index: 1000;
22242a7862SGreg Roach    top: 1rem;
23242a7862SGreg Roach    display: none;
24242a7862SGreg Roach}
25242a7862SGreg Roach
26242a7862SGreg Roach.wt-osk-keys {
27242a7862SGreg Roach    background: #eee;
28242a7862SGreg Roach    padding: 0.25rem;
29242a7862SGreg Roach    font-size: larger;
30242a7862SGreg Roach}
31242a7862SGreg Roach
32242a7862SGreg Roach.wt-osk-group {
33242a7862SGreg Roach    display: inline-block;
34242a7862SGreg Roach    margin: 0.25rem;
35242a7862SGreg Roach    padding: 0.25rem 0;
36242a7862SGreg Roach}
37242a7862SGreg Roach
38242a7862SGreg Roach.wt-osk-key {
39242a7862SGreg Roach    background: #ddd;
40242a7862SGreg Roach    border-radius: .25rem;
41242a7862SGreg Roach    padding: 0.25rem;
42242a7862SGreg Roach    cursor: pointer;
43242a7862SGreg Roach}
44242a7862SGreg Roach
45242a7862SGreg Roach.wt-osk-key-shift {
46242a7862SGreg Roach    color: #aaa;
47242a7862SGreg Roach    font-size: smaller;
48242a7862SGreg Roach}
49242a7862SGreg Roach
50242a7862SGreg Roach.wt-osk-keys.shifted .wt-osk-key {
51242a7862SGreg Roach    color: #aaa;
52242a7862SGreg Roach}
53242a7862SGreg Roach
54242a7862SGreg Roach.wt-osk-keys.shifted .wt-osk-key-shift {
55242a7862SGreg Roach    color: #555;
56242a7862SGreg Roach}
57