Robo-knowledge-web-theme 1.0.0
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 +7 -0
- data/_includes/back_to_top.html +3 -0
- data/_includes/categories_fetcher.html +1 -0
- data/_includes/footer.html +22 -0
- data/_includes/navigation.html +5 -0
- data/_includes/posts_fetcher.html +2 -0
- data/_includes/search_categories_fetcher.html +1 -0
- data/_includes/search_tags_fetcher.html +1 -0
- data/_includes/tags_fetcher.html +1 -0
- data/_layouts/author.html +149 -0
- data/_layouts/authors_search_layout.html +28 -0
- data/_layouts/categories_search_layout.html +16 -0
- data/_layouts/default.html +17 -0
- data/_layouts/post.html +31 -0
- data/_layouts/posts_search_layout.html +49 -0
- data/_layouts/robo_content_layout.html +45 -0
- data/_layouts/robo_main_layout.html +353 -0
- data/_layouts/robo_search_layout.html +33 -0
- data/_layouts/tags_search_layout.html +16 -0
- data/_sass/content_page_styles.scss +211 -0
- data/_sass/general_colors.scss +142 -0
- data/_sass/general_shadows.scss +12 -0
- data/_sass/general_styles.scss +123 -0
- data/_sass/main.scss +3 -0
- data/_sass/main_page_colors.scss +80 -0
- data/_sass/main_page_styles.scss +741 -0
- data/_sass/search_page_styles.scss +94 -0
- metadata +69 -0
@@ -0,0 +1,94 @@
|
|
1
|
+
body{
|
2
|
+
font-family: "Ali_Ma", sans-serif;
|
3
|
+
}
|
4
|
+
|
5
|
+
.search_top_container {
|
6
|
+
width: 100%;
|
7
|
+
height: 150px;
|
8
|
+
|
9
|
+
position: relative;
|
10
|
+
overflow: hidden;
|
11
|
+
|
12
|
+
}
|
13
|
+
#search_space_container {
|
14
|
+
flex-grow: 1;
|
15
|
+
overflow-y: hidden;
|
16
|
+
|
17
|
+
display: flex;
|
18
|
+
z-index: 90;
|
19
|
+
|
20
|
+
flex-direction: column;
|
21
|
+
align-items: center;
|
22
|
+
}
|
23
|
+
|
24
|
+
//顶部标题样式
|
25
|
+
.search_top_title{
|
26
|
+
|
27
|
+
position: absolute;
|
28
|
+
top: 40px;
|
29
|
+
right: 20px;
|
30
|
+
|
31
|
+
font-size: 50px;
|
32
|
+
z-index: 99;
|
33
|
+
}
|
34
|
+
.robo_head{
|
35
|
+
position: absolute;
|
36
|
+
bottom: -60px;
|
37
|
+
left: 80px;
|
38
|
+
|
39
|
+
height:200px;
|
40
|
+
width: 200px;
|
41
|
+
}
|
42
|
+
|
43
|
+
//搜索样式
|
44
|
+
.search_input_container{
|
45
|
+
|
46
|
+
width:45%;
|
47
|
+
height:auto;
|
48
|
+
|
49
|
+
display: flex;
|
50
|
+
flex-wrap: wrap;
|
51
|
+
justify-content: center;
|
52
|
+
|
53
|
+
margin-top: 50px;
|
54
|
+
|
55
|
+
}
|
56
|
+
.search_input{
|
57
|
+
|
58
|
+
height: 50px;
|
59
|
+
|
60
|
+
font-size: 30px;
|
61
|
+
|
62
|
+
flex: 8;
|
63
|
+
|
64
|
+
border-radius: 5px;
|
65
|
+
border: none;
|
66
|
+
|
67
|
+
font-family: "Ali_Ma", sans-serif;
|
68
|
+
|
69
|
+
}
|
70
|
+
#search_btn{
|
71
|
+
|
72
|
+
width: 50px;
|
73
|
+
|
74
|
+
margin: 5px 10px;
|
75
|
+
|
76
|
+
flex: 2;
|
77
|
+
font-size: 30px;
|
78
|
+
border-radius: 5px;
|
79
|
+
border: none;
|
80
|
+
|
81
|
+
text-align: center;
|
82
|
+
|
83
|
+
font-family: "Ali_Ma", sans-serif;
|
84
|
+
}
|
85
|
+
.search_post_container{
|
86
|
+
width: 60%;
|
87
|
+
height: auto;
|
88
|
+
|
89
|
+
padding: 10px;
|
90
|
+
|
91
|
+
display: flex;
|
92
|
+
flex-direction: column;
|
93
|
+
justify-content: center;
|
94
|
+
}
|
metadata
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: Robo-knowledge-web-theme
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- TIMAVICIIX
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-07-08 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description:
|
14
|
+
email: timaviciix@outlook.com
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- _includes/back_to_top.html
|
20
|
+
- _includes/categories_fetcher.html
|
21
|
+
- _includes/footer.html
|
22
|
+
- _includes/navigation.html
|
23
|
+
- _includes/posts_fetcher.html
|
24
|
+
- _includes/search_categories_fetcher.html
|
25
|
+
- _includes/search_tags_fetcher.html
|
26
|
+
- _includes/tags_fetcher.html
|
27
|
+
- _layouts/author.html
|
28
|
+
- _layouts/authors_search_layout.html
|
29
|
+
- _layouts/categories_search_layout.html
|
30
|
+
- _layouts/default.html
|
31
|
+
- _layouts/post.html
|
32
|
+
- _layouts/posts_search_layout.html
|
33
|
+
- _layouts/robo_content_layout.html
|
34
|
+
- _layouts/robo_main_layout.html
|
35
|
+
- _layouts/robo_search_layout.html
|
36
|
+
- _layouts/tags_search_layout.html
|
37
|
+
- _sass/content_page_styles.scss
|
38
|
+
- _sass/general_colors.scss
|
39
|
+
- _sass/general_shadows.scss
|
40
|
+
- _sass/general_styles.scss
|
41
|
+
- _sass/main.scss
|
42
|
+
- _sass/main_page_colors.scss
|
43
|
+
- _sass/main_page_styles.scss
|
44
|
+
- _sass/search_page_styles.scss
|
45
|
+
homepage: https://github.com/TIMAVICIIX/timaviciix.github.io
|
46
|
+
licenses:
|
47
|
+
- MIT
|
48
|
+
metadata: {}
|
49
|
+
post_install_message:
|
50
|
+
rdoc_options: []
|
51
|
+
require_paths:
|
52
|
+
- lib
|
53
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: '0'
|
58
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
requirements: []
|
64
|
+
rubygems_version: 3.5.11
|
65
|
+
signing_key:
|
66
|
+
specification_version: 4
|
67
|
+
summary: A Theme For general bolgs and knowledge sharing,you can use it to write your
|
68
|
+
own blog
|
69
|
+
test_files: []
|