appcss 0.0.20 → 0.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/appcss/app.css +6 -3
- data/lib/appcss/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 843edb3eac88dfceace253e0f8a604cde0bcac0b
|
|
4
|
+
data.tar.gz: f1115b528ffa4f3b8a97b16e533d0e8b709d0755
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d3d217ac1d18952ad56a5dcf62215a61b166da36e11eb0fcd406916744db153147b1da2a12b11cdb3df315e52d051310c7ca317311054d66732cff317b75783c
|
|
7
|
+
data.tar.gz: 186e6a8cdac16280edf2bf788a73e502a2258c3c5e34ec836b0aa5089b6676f1c6e0ee4af69e6711afbe04916cc264fd69542273db0a756ddd2e79817313d9ca
|
|
@@ -429,8 +429,7 @@ th {
|
|
|
429
429
|
|
|
430
430
|
html {
|
|
431
431
|
background: #4199cc;
|
|
432
|
-
color: white;
|
|
433
|
-
line-height: 1.5rem; }
|
|
432
|
+
color: white; }
|
|
434
433
|
|
|
435
434
|
html, body {
|
|
436
435
|
height: 100%;
|
|
@@ -440,6 +439,9 @@ a {
|
|
|
440
439
|
color: #40a9e6;
|
|
441
440
|
text-decoration: none; }
|
|
442
441
|
|
|
442
|
+
p, label, table, em, strong, span {
|
|
443
|
+
line-height: 1.5rem; }
|
|
444
|
+
|
|
443
445
|
.acss-readable-container {
|
|
444
446
|
max-width: 768px; }
|
|
445
447
|
|
|
@@ -470,7 +472,8 @@ a {
|
|
|
470
472
|
background: whitesmoke;
|
|
471
473
|
color: #627d8c;
|
|
472
474
|
box-shadow: inset 0px 3px 5px #bbbbbb;
|
|
473
|
-
padding-top: 15px;
|
|
475
|
+
padding-top: 15px;
|
|
476
|
+
line-height: normal; }
|
|
474
477
|
@media screen and (min-width: 768px) {
|
|
475
478
|
.acss-sidebar {
|
|
476
479
|
width: calc(100% - 15px);
|
data/lib/appcss/version.rb
CHANGED