focus-theme 0.1.6 → 0.1.7
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/README.md +5 -0
- data/assets/css/theme.css +44 -2
- metadata +1 -2
- data/_includes/sidebar.html +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 036b1d5c38ced67a4852ec60832483f878c14138933c618fc247f6ded05ca8b1
|
4
|
+
data.tar.gz: 04f4895cfbb4dd2b031d5e9ba06f4037f7ec8cfb2afde1b3409a203f6464ccb9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fef615d6d48e9e9bf57145cfe84a9e53018e4a80c1c37cd557b066c0ec81917cce320de35fc66b34bae796a084ea70709a9a20c3d19ad6035326e7cfdcdd4bee
|
7
|
+
data.tar.gz: d3e926a1236e7bc02cdbce496841b4c7d665b609ffce240285dfa330bf04382ccf81916725fb5c3db00120881b44a405bf288b0f9d04749475c558d45efccbc6
|
data/README.md
CHANGED
data/assets/css/theme.css
CHANGED
@@ -1,7 +1,50 @@
|
|
1
1
|
/*!
|
2
|
-
*
|
2
|
+
* Focus Jekyll Theme
|
3
3
|
*/
|
4
4
|
|
5
|
+
/*
|
6
|
+
* Markdown CSS
|
7
|
+
*/
|
8
|
+
|
9
|
+
table {
|
10
|
+
width: 100%;
|
11
|
+
border-collapse: collapse;
|
12
|
+
margin: 20px 0;
|
13
|
+
font-size: 16px;
|
14
|
+
font-family: Arial, sans-serif;
|
15
|
+
text-align: center;
|
16
|
+
}
|
17
|
+
|
18
|
+
table thead th {
|
19
|
+
background-color: #4CAF50; /* Header background color */
|
20
|
+
color: white; /* Header text color */
|
21
|
+
text-transform: uppercase;
|
22
|
+
font-weight: bold;
|
23
|
+
padding: 12px;
|
24
|
+
border: 1px solid #ddd;
|
25
|
+
}
|
26
|
+
|
27
|
+
table tbody td {
|
28
|
+
padding: 12px;
|
29
|
+
border: 1px solid #ddd;
|
30
|
+
}
|
31
|
+
|
32
|
+
table tbody tr:nth-child(even) {
|
33
|
+
background-color: #f9f9f9; /* Light background for alternating rows */
|
34
|
+
}
|
35
|
+
|
36
|
+
table tbody tr:hover {
|
37
|
+
background-color: #f1f1f1; /* Highlight row on hover */
|
38
|
+
}
|
39
|
+
|
40
|
+
table caption {
|
41
|
+
margin-top: 10px;
|
42
|
+
font-weight: bold;
|
43
|
+
font-size: 18px;
|
44
|
+
color: #555;
|
45
|
+
text-align: left;
|
46
|
+
}
|
47
|
+
|
5
48
|
body {
|
6
49
|
overflow-x:hidden;
|
7
50
|
padding-top:69.75px;
|
@@ -808,4 +851,3 @@ div.a2a_full_footer {display:none;}
|
|
808
851
|
height:280px !Important;
|
809
852
|
}
|
810
853
|
}
|
811
|
-
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: focus-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alex Thorpe
|
@@ -65,7 +65,6 @@ files:
|
|
65
65
|
- _includes/meta-read-time.html
|
66
66
|
- _includes/search-lunr.html
|
67
67
|
- _includes/sidebar-featured.html
|
68
|
-
- _includes/sidebar.html
|
69
68
|
- _layouts/default.html
|
70
69
|
- _layouts/page-sidebar.html
|
71
70
|
- _layouts/page.html
|
data/_includes/sidebar.html
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
<h5 class="mb-3">Mundana Jekyll Theme</h5>
|
2
|
-
|
3
|
-
<p>Hi! The website you are previewing is a demonstration for Mundana Jekyll theme, hosted on Github, made by <a href="https://www.wowthemes.net/donate/">Sal</a>.</p>
|
4
|
-
|
5
|
-
<a target="_blank" href="https://www.wowthemes.net/mundana-jekyll-theme/" class="btn btn-warning d-block mb-2"><i class="fa fa-file"></i> Documentation</a>
|
6
|
-
|
7
|
-
<a target="_blank" class="btn btn-danger d-block" href="https://www.wowthemes.net/donate/"><i class="fa fa-coffee"></i> Buy me a coffee</a>
|