quattle 1.5.5 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
data/_sass/_base.scss CHANGED
@@ -1,93 +1,93 @@
1
- * {
2
- -webkit-box-sizing: border-box;
3
- -moz-box-sizing: border-box;
4
- box-sizing: border-box;
5
- }
6
-
7
- html,
8
- body {
9
- margin: 0;
10
- padding: 0;
11
- }
12
-
13
- html {
14
- font-family: $root-font-family;
15
- font-size: $root-font-size;
16
- line-height: $root-line-height;
17
-
18
- @media (min-width: $large-breakpoint) {
19
- font-size: $large-font-size;
20
- }
21
- }
22
-
23
- body {
24
- color: $text;
25
- background-color: $bg;
26
- -webkit-text-size-adjust: 100%;
27
- -ms-text-size-adjust: 100%;
28
-
29
-
30
- @media (prefers-color-scheme: light) {
31
- color: $light-scheme-text;
32
- background-color: $light-scheme-bg;
33
- }
34
-
35
- }
36
-
37
- // No `:visited` state is required by default (browsers will use `a`)
38
- a {
39
- color: $color;
40
- text-decoration: none;
41
-
42
- @media (prefers-color-scheme: light) {
43
- color: $light-scheme-color;
44
- }
45
-
46
- // `:focus` is linked to `:hover` for basic accessibility
47
- &:hover,
48
- &:focus {
49
- text-decoration: none;
50
- }
51
-
52
- strong {
53
- color: inherit;
54
- }
55
- }
56
-
57
- img {
58
- display: block;
59
- max-width: 100%;
60
- margin: 0 0 1rem;
61
- border-radius: 5px;
62
- }
63
-
64
- table {
65
- margin-bottom: 1rem;
66
- width: 100%;
67
- font-size: 85%;
68
- border: 1px solid #555555;
69
- border-collapse: collapse;
70
-
71
- @media (prefers-color-scheme: light) {
72
- border: 1px solid #D2D2D2;
73
- }
74
- }
75
-
76
- td,
77
- th {
78
- padding: .25rem .5rem;
79
- border: 1px solid #555555;
80
- }
81
-
82
- th {
83
- text-align: left;
84
- }
85
-
86
- tbody tr:nth-child(odd) td,
87
- tbody tr:nth-child(odd) th {
88
- background-color: #2d2d2d;
89
-
90
- @media (prefers-color-scheme: light) {
91
- background-color: #d2d2d2;
92
- }
93
- }
1
+ * {
2
+ -webkit-box-sizing: border-box;
3
+ -moz-box-sizing: border-box;
4
+ box-sizing: border-box;
5
+ }
6
+
7
+ html,
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ }
12
+
13
+ html {
14
+ font-family: $root-font-family;
15
+ font-size: $root-font-size;
16
+ line-height: $root-line-height;
17
+
18
+ @media (min-width: $large-breakpoint) {
19
+ font-size: $large-font-size;
20
+ }
21
+ }
22
+
23
+ body {
24
+ color: $text;
25
+ background-color: $bg;
26
+ -webkit-text-size-adjust: 100%;
27
+ -ms-text-size-adjust: 100%;
28
+
29
+
30
+ @media (prefers-color-scheme: light) {
31
+ color: $light-scheme-text;
32
+ background-color: $light-scheme-bg;
33
+ }
34
+
35
+ }
36
+
37
+ // No `:visited` state is required by default (browsers will use `a`)
38
+ a {
39
+ color: $color;
40
+ text-decoration: none;
41
+
42
+ @media (prefers-color-scheme: light) {
43
+ color: $light-scheme-color;
44
+ }
45
+
46
+ // `:focus` is linked to `:hover` for basic accessibility
47
+ &:hover,
48
+ &:focus {
49
+ text-decoration: none;
50
+ }
51
+
52
+ strong {
53
+ color: inherit;
54
+ }
55
+ }
56
+
57
+ img {
58
+ display: block;
59
+ max-width: 100%;
60
+ margin: 0 0 1rem;
61
+ border-radius: 5px;
62
+ }
63
+
64
+ table {
65
+ margin-bottom: 1rem;
66
+ width: 100%;
67
+ font-size: 85%;
68
+ border: 1px solid #555555;
69
+ border-collapse: collapse;
70
+
71
+ @media (prefers-color-scheme: light) {
72
+ border: 1px solid #D2D2D2;
73
+ }
74
+ }
75
+
76
+ td,
77
+ th {
78
+ padding: .25rem .5rem;
79
+ border: 1px solid #555555;
80
+ }
81
+
82
+ th {
83
+ text-align: left;
84
+ }
85
+
86
+ tbody tr:nth-child(odd) td,
87
+ tbody tr:nth-child(odd) th {
88
+ background-color: #2d2d2d;
89
+
90
+ @media (prefers-color-scheme: light) {
91
+ background-color: #d2d2d2;
92
+ }
93
+ }
data/_sass/_buttons.scss CHANGED
@@ -1,59 +1,59 @@
1
- .added {
2
- background: #6a28e8;
3
- color: #fff;
4
- text-align: center;
5
- font-variant: small-caps;
6
- font-weight: bold;
7
- padding: 2px 9px 4px;
8
- margin: 0 7px 7px 0;
9
- border-radius: 6px;
10
- border: 1px solid #5bc8f9;
11
- }
12
-
13
- .improved {
14
- background: #0c83e1;
15
- color: #fff;
16
- text-align: center;
17
- font-variant: small-caps;
18
- font-weight: bold;
19
- padding: 2px 9px 4px;
20
- margin: 0 7px 7px 0;
21
- border-radius: 6px;
22
- border: 1px solid #5bc8f9;
23
- }
24
-
25
- .fixed {
26
- background: #00d486;
27
- color: #fff;
28
- text-align: center;
29
- font-variant: small-caps;
30
- font-weight: bold;
31
- padding: 2px 9px 4px;
32
- margin: 0 7px 7px 0;
33
- border-radius: 6px;
34
- border: 1px solid #5bc8f9;
35
- }
36
-
37
- .soon {
38
- background: #ff6600;
39
- color: #fff;
40
- text-align: center;
41
- font-variant: small-caps;
42
- font-weight: bold;
43
- padding: 2px 9px 4px;
44
- margin: 0 7px 7px 0;
45
- border-radius: 6px;
46
- border: 1px solid #5bc8f9;
47
- }
48
-
49
- .removed {
50
- background: #ff0000;
51
- color: #fff;
52
- text-align: center;
53
- font-variant: small-caps;
54
- font-weight: bold;
55
- padding: 2px 9px 4px;
56
- margin: 0 7px 7px 0;
57
- border-radius: 6px;
58
- border: 1px solid #5bc8f9;
59
- }
1
+ .added {
2
+ background: #6a28e8;
3
+ color: #fff;
4
+ text-align: center;
5
+ font-variant: small-caps;
6
+ font-weight: bold;
7
+ padding: 2px 9px 4px;
8
+ margin: 0 7px 7px 0;
9
+ border-radius: 6px;
10
+ border: 1px solid #5bc8f9;
11
+ }
12
+
13
+ .improved {
14
+ background: #0c83e1;
15
+ color: #fff;
16
+ text-align: center;
17
+ font-variant: small-caps;
18
+ font-weight: bold;
19
+ padding: 2px 9px 4px;
20
+ margin: 0 7px 7px 0;
21
+ border-radius: 6px;
22
+ border: 1px solid #5bc8f9;
23
+ }
24
+
25
+ .fixed {
26
+ background: #00d486;
27
+ color: #fff;
28
+ text-align: center;
29
+ font-variant: small-caps;
30
+ font-weight: bold;
31
+ padding: 2px 9px 4px;
32
+ margin: 0 7px 7px 0;
33
+ border-radius: 6px;
34
+ border: 1px solid #5bc8f9;
35
+ }
36
+
37
+ .soon {
38
+ background: #ff6600;
39
+ color: #fff;
40
+ text-align: center;
41
+ font-variant: small-caps;
42
+ font-weight: bold;
43
+ padding: 2px 9px 4px;
44
+ margin: 0 7px 7px 0;
45
+ border-radius: 6px;
46
+ border: 1px solid #5bc8f9;
47
+ }
48
+
49
+ .removed {
50
+ background: #ff0000;
51
+ color: #fff;
52
+ text-align: center;
53
+ font-variant: small-caps;
54
+ font-weight: bold;
55
+ padding: 2px 9px 4px;
56
+ margin: 0 7px 7px 0;
57
+ border-radius: 6px;
58
+ border: 1px solid #5bc8f9;
59
+ }