Project

General

Profile

Download (1.09 KB) Statistics
| Branch: | Tag: | Revision:

haketilo / html / base.css @ 544c6df3

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
html {
10
    font-family: sans-serif;
11
}
12

    
13
textarea {
14
    font-family: monospace;
15
}
16

    
17
input[type="checkbox"], input[type="radio"], .hide {
18
    display: none;
19
}
20

    
21
.show_next:not(:checked)+* {
22
    display: none;
23
}
24

    
25
.show_hide_next2:not(:checked)+* {
26
    display: none;
27
}
28

    
29
.show_hide_next2:checked+*+* {
30
    display: none;
31
}
32

    
33
button, .button {
34
    background-color: #4CAF50;
35
    border: none;
36
    border-radius: 8px;
37
    color: white;
38
    text-align: center;
39
    text-decoration: none;
40
    display: inline-block;
41
    padding: 6px 12px;
42
    margin: 2px 0px;
43
    -moz-user-select: none;
44
    user-select: none;
45
}
46

    
47
button.slimbutton, .button.slimbutton {
48
    padding: 2px 4px;
49
    margin: 0;
50
}
51

    
52
button:hover, .button:hover {
53
    box-shadow: 0 6px 8px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
54
}
55

    
56
aside {
57
    background: #3f8dc6;
58
    margin: 5px 0;
59
    padding: 0.3em 1em;
60
    border-radius: 3px;
61
    color: #fff;
62
}
63

    
64
textarea: {
65
    resize: none;
66
}
(2-2/9)