UNPKG

722 BSCSSView Raw
1*:focus {
2 outline: none;
3}
4
5a, a:hover, a:focus {
6 color: inherit;
7 text-decoration: inherit;
8}
9
10body {
11 margin: 0;
12}
13
14.btn {
15 // I want .btn.disabled to work (not fire click handlers) but don't want the styles that come with .btn
16 border: none;
17 border-radius: 0;
18 padding: 0;
19 white-space: normal;
20}
21
22button {
23 padding: 0;
24}
25
26div {
27 background-repeat: no-repeat;
28}
29
30h1, h2, h3, h4, h5, h6 {
31 margin: 0;
32 font-weight: normal;
33}
34
35hr {
36 margin: 0;
37}
38
39img {
40 -webkit-user-drag: none;
41}
42
43input {
44 border: none;
45}
46
47label {
48 font-weight: normal;
49 margin: 0;
50}
51
52li {
53 list-style: none;
54}
55
56ol {
57 padding: 0;
58 margin: 0;
59}
60
61p {
62 margin: 0;
63}
64
65textarea {
66 resize: none;
67}
68
69ul {
70 padding: 0;
71 margin: 0;
72}