This repository has been archived by the owner on Aug 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
/
help.css
89 lines (78 loc) · 1.74 KB
/
help.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* -*- mode: css; tab-width: 2; indent-tabs-mode: nil; -*-
*
* Copyright (c) 2011-2013 Marcus Geelnard
*
* This file is part of SoundBox.
*
* SoundBox 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 3 of the License, or
* (at your option) any later version.
*
* SoundBox 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 SoundBox. If not, see <http://www.gnu.org/licenses/>.
*
*/
@import url(http://fonts.googleapis.com/css?family=Audiowide);
body {
font-family: arial, sans-serif;
padding-bottom: 20px;
}
#content {
min-width: 200px;
max-width: 1000px;
padding: 0;
margin-left: auto;
margin-right: auto;
}
h1,h2,h3 {
font-family: 'Audiowide', cursive;
font-weight: normal;
}
h1 {
font-size: 300%;
text-align: center;
background: #ccc;
border-radius: 9px;
}
h2 {
font-size: 180%;
margin-top: 2em;
}
h3 {
font-size: 130%;
margin-top: 2em;
}
.centered {
text-align: center;
}
.smallButton {
width: 24px;
height: 24px;
padding: 3px;
margin: 0 1px;
border-radius: 3px;
background: #d8d8d8 url("gui/smallButton-bg.gif") repeat-x;
font-family: arial,sans;
font-size: 11px;
color: #000;
overflow: hidden;
}
.note {
background: #fee;
border: 2px solid #a88;
padding: 3px 6px;
border-radius: 3px;
}
.license {
font-family: monospace;
background: #eee;
border: 1px solid #a88;
padding: 3px 6px;
border-radius: 3px;
}