Project

General

Profile

Download (833 Bytes) Statistics
| Branch: | Tag: | Revision:

haketilo / html / base.css @ 792fbe18

1
/**
2
 * Hachette base styles
3
 *
4
 * Copyright (C) 2021 Wojtek Kosior
5
 * Copyright (C) 2021 Nicholas Johnson
6
 * Redistribution terms are gathered in the `copyright' file.
7
 */
8

    
9
input[type="checkbox"], input[type="radio"], .hide {
10
    display: none;
11
}
12

    
13
.show_next:not(:checked)+* {
14
    display: none;
15
}
16

    
17
.show_hide_next2:not(:checked)+* {
18
    display: none;
19
}
20

    
21
.show_hide_next2:checked+*+* {
22
    display: none;
23
}
24

    
25
button, .button {
26
    background-color: #4CAF50;
27
    border: none;
28
    border-radius: 8px;
29
    color: white;
30
    text-align: center;
31
    text-decoration: none;
32
    display: inline-block;
33
    padding: 6px 12px;
34
    margin: 2px 0px;
35
}
36

    
37
button.slimbutton, .button.slimbutton {
38
    padding: 2px 4px;
39
    margin: 0;
40
}
41

    
42
button:hover, .button:hover {
43
    box-shadow: 0 6px 8px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
44
}
(2-2/8)