docs-cambiocds-com-jekyll-theme 0.1.4 → 0.1.5
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/assets/css/custom.css +30 -4
- 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: 260a8f0dd91a5b5b7a516956c88008793f9e79e4
|
|
4
|
+
data.tar.gz: b375868c81f37a28b993fd03581ae7a59b873eca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '09e1be6273813cd8f1d306c460cf6bae664c8414798c9940eecd5921452dead1f85631fc5f5476638811f9b5dcb3b24e6056abc18a0d82dffdd936a7cec3ed2f'
|
|
7
|
+
data.tar.gz: 4662c116f4164b807bcb7e6a9ada14f6db1f29ef7d678386c6666b65a0fb2465cdfa94d852c9391c74d95ab753c73010c2a0a58c2b4f3509b680cd43a220fa89
|
data/assets/css/custom.css
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
.card-custom {
|
|
2
2
|
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
|
|
3
3
|
transition: 0.3s;
|
|
4
|
-
width: 50%;
|
|
5
4
|
border-radius: 5px;
|
|
6
5
|
margin-left: auto;
|
|
7
6
|
margin-right: auto;
|
|
8
7
|
word-wrap: break-word;
|
|
9
|
-
padding
|
|
10
|
-
|
|
8
|
+
padding: 15px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.card-custom h2 {
|
|
12
|
+
font-size: 1.8rem;
|
|
13
|
+
margin-top: 0px;
|
|
11
14
|
}
|
|
12
15
|
|
|
13
16
|
.card-custom:hover {
|
|
@@ -15,37 +18,60 @@
|
|
|
15
18
|
}
|
|
16
19
|
|
|
17
20
|
.container {
|
|
18
|
-
padding:
|
|
21
|
+
padding: 0px;
|
|
19
22
|
width: 100%;
|
|
23
|
+
margin-bottom: 100px;
|
|
24
|
+
margin-top: 30px;
|
|
20
25
|
}
|
|
21
26
|
|
|
22
27
|
@media (min-width: 576px) {
|
|
23
28
|
.container {
|
|
24
29
|
max-width: 540px;
|
|
30
|
+
padding: 0;
|
|
31
|
+
}
|
|
32
|
+
.card-custom {
|
|
33
|
+
width: 100%;
|
|
34
|
+
margin-bottom: 20px;
|
|
25
35
|
}
|
|
26
36
|
}
|
|
27
37
|
|
|
28
38
|
@media (min-width: 768px) {
|
|
29
39
|
.container {
|
|
30
40
|
max-width: 720px;
|
|
41
|
+
padding: 2px 16px;
|
|
42
|
+
}
|
|
43
|
+
.card-custom {
|
|
44
|
+
width: 70%;
|
|
45
|
+
margin-bottom: 20px;
|
|
31
46
|
}
|
|
32
47
|
}
|
|
33
48
|
|
|
34
49
|
@media (min-width: 992px) {
|
|
35
50
|
.container {
|
|
36
51
|
max-width: 960px;
|
|
52
|
+
padding: 2px 16px;
|
|
53
|
+
}
|
|
54
|
+
.card-custom {
|
|
55
|
+
width: 50%;
|
|
56
|
+
margin-bottom: 20px;
|
|
37
57
|
}
|
|
38
58
|
}
|
|
39
59
|
|
|
40
60
|
@media (min-width: 1200px) {
|
|
41
61
|
.container {
|
|
42
62
|
max-width: 1140px;
|
|
63
|
+
padding: 2px 16px;
|
|
64
|
+
}
|
|
65
|
+
.card-custom {
|
|
66
|
+
width: 50%;
|
|
67
|
+
margin-bottom: 20px;
|
|
43
68
|
}
|
|
44
69
|
}
|
|
45
70
|
|
|
46
71
|
@media (min-width: 1600px) {
|
|
47
72
|
.container {
|
|
48
73
|
max-width: 100%;
|
|
74
|
+
padding: 2px 16px;
|
|
49
75
|
}
|
|
50
76
|
}
|
|
51
77
|
|