Issues (576)

src/styles/remedycss.scss (12 issues)

Severity
1
// github.com/jensimmons/cssremedy
2
3
*,
4
::before,
5
::after {
6
  box-sizing: border-box;
7
}
8
9
html {
10
  line-sizing: normal;
0 ignored issues
show
Unknown property line-sizing
Loading history...
11
}
12
13
body {
14
  margin: 0;
15
}
16
17
[hidden] {
18
  display: none;
19
}
20
21
h1 {
22
  font-size: 2rem;
23
}
0 ignored issues
show
Rule declaration should be followed by an empty line
Loading history...
24
h2 {
25
  font-size: 1.5rem;
26
}
0 ignored issues
show
Rule declaration should be followed by an empty line
Loading history...
27
h3 {
28
  font-size: 1.17rem;
29
}
0 ignored issues
show
Rule declaration should be followed by an empty line
Loading history...
30
h4 {
31
  font-size: 1rem;
32
}
0 ignored issues
show
Rule declaration should be followed by an empty line
Loading history...
33
h5 {
34
  font-size: 0.83rem;
0 ignored issues
show
0.83 should be written without a leading zero as .83
Loading history...
35
}
0 ignored issues
show
Rule declaration should be followed by an empty line
Loading history...
36
h6 {
37
  font-size: 0.67rem;
0 ignored issues
show
0.67 should be written without a leading zero as .67
Loading history...
38
}
39
40
pre {
41
  white-space: pre-wrap;
42
}
43
44
hr {
45
  border-style: solid;
46
  border-width: 1px 0 0;
47
  color: inherit;
48
  height: 0;
49
  overflow: visible;
50
}
51
52
img,
53
svg,
54
video,
55
canvas,
56
audio,
57
iframe,
58
embed,
59
object {
60
  display: block;
61
  vertical-align: middle;
0 ignored issues
show
Properties should be ordered display, max-width, vertical-align
Loading history...
62
  max-width: 100%;
63
}
0 ignored issues
show
Rule declaration should be followed by an empty line
Loading history...
64
audio:not([controls]) {
65
  display: none;
66
}
67
68
picture {
69
  display: contents;
70
}
0 ignored issues
show
Rule declaration should be followed by an empty line
Loading history...
71
source {
72
  display: none;
73
}
74
75
img,
76
svg,
77
video,
78
canvas {
79
  height: auto;
80
}
81
82
audio {
83
  width: 100%;
84
}
85
86
img {
87
  border-style: none;
88
}
89
90
svg {
91
  overflow: hidden;
92
}
93
94
article,
95
aside,
96
details,
97
figcaption,
98
figure,
99
footer,
100
header,
101
hgroup,
102
main,
103
nav,
104
section {
105
  display: block;
106
}
107
108
[type='checkbox'],
109
[type='radio'] {
110
  box-sizing: border-box;
111
  padding: 0;
112
}
113
114
a {
115
  text-decoration: none;
0 ignored issues
show
Properties should be ordered color, text-decoration
Loading history...
116
  color: inherit;
117
}
118