Skip to content

Commit 1763c30

Browse files
committed
Auto generated GitHub pages
0 parents  commit 1763c30

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+1370
-0
lines changed

.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Generic files to ignore
2+
.*
3+
.*.swp
4+
5+
# Python cache
6+
__pycache__/
7+
8+
# Editors
9+
*~
10+
*.swp
11+
*.swo
12+
*#
13+
14+
# QtCreator
15+
CMakeLists.txt.user
16+
17+
# ms-windows
18+
Thumbs.db
19+
ehthumbs.db
20+
Desktop.ini
21+
22+
# Local patches
23+
/*.patch
24+
/*.diff
25+
26+
# Build folders
27+
bin-dbg
28+
bin-opt
29+
build*/
30+
install*/
31+
32+
# OSL compiled examples
33+
examples/osl/*.oso

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
www.cycles-renderer.org

categories/index.html

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<!DOCTYPE html>
2+
<html><head>
3+
<meta charset="utf-8">
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
6+
<link rel="stylesheet" type="text/css" href="https://netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
7+
<link rel="stylesheet" type="text/css" href="/css/style.css">
8+
<title>Cycles</title>
9+
</head>
10+
<body><div class="site-masthead">
11+
<div class="container">
12+
13+
<div class="site-header">
14+
<h1 class="site-title">
15+
<a href="/">Cycles</a>&nbsp;<span class="site-subtitle">Open Source Production Rendering</span>
16+
</h1>
17+
</div>
18+
19+
<div class="site-nav">
20+
<ul class="menu">
21+
22+
<li class="menu-item">
23+
<a class="link" href="/features/">
24+
25+
26+
Features
27+
</a>
28+
</li>
29+
30+
<li class="menu-item">
31+
<a class="link" href="/development/">
32+
33+
34+
Development
35+
</a>
36+
</li>
37+
38+
</ul>
39+
</div>
40+
</div>
41+
</div>
42+
<div class="container">
43+
<div id="content">
44+
<h1>Categories</h1>
45+
46+
47+
</div></div>
48+
<p class="site-footer">© 2023 Cycles Developers</p>
49+
</body>
50+
</html>

categories/index.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
2+
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
3+
<channel>
4+
<title>Categories on Cycles</title>
5+
<link>https://www.cycles-renderer.org/categories/</link>
6+
<description>Recent content in Categories on Cycles</description>
7+
<generator>Hugo -- gohugo.io</generator><atom:link href="https://www.cycles-renderer.org/categories/index.xml" rel="self" type="application/rss+xml" />
8+
</channel>
9+
</rss>

css/photoswipe-gallery.css

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
/* SPDX-License-Identifier: MIT
2+
* Copyright (c) 2017 Li-Wen Yip */
3+
4+
/* Grid Layout Styles */
5+
6+
.gallery {
7+
overflow: hidden;
8+
margin: 10px;
9+
max-width: 900px;
10+
}
11+
.gallery .box {
12+
float: left;
13+
position: relative;
14+
/* Default: 1 tile wide */
15+
width: 100%;
16+
padding-bottom: 100%;
17+
}
18+
@media only screen and (min-width : 365px) {
19+
/* Tablet view: 2 tiles */
20+
.gallery .box {
21+
width: 50%;
22+
padding-bottom: 50%;
23+
}
24+
}
25+
@media only screen and (min-width : 480px) {
26+
/* Small desktop / ipad view: 3 tiles */
27+
.gallery .box {
28+
width: 33.3%;
29+
padding-bottom: 33.3%; /* */
30+
}
31+
}
32+
@media only screen and (min-width : 9999px) {
33+
/* Medium desktop: 4 tiles */
34+
.box {
35+
width: 25%;
36+
padding-bottom: 25%;
37+
}
38+
}
39+
40+
/* figure styles */
41+
figure {
42+
position:relative; /* purely to allow absolution positioning of figcaption */
43+
overflow: hidden;
44+
}
45+
.gallery figure {
46+
position: absolute;
47+
left: 5px;
48+
right: 5px;
49+
top: 5px;
50+
bottom: 5px;
51+
}
52+
53+
/* img / a styles */
54+
55+
.gallery .img {
56+
position: absolute;
57+
left: 0;
58+
right: 0;
59+
top: 0;
60+
bottom: 0;
61+
background-size: cover;
62+
background-position: 50% 50%;
63+
background-repeat: no-repeat;
64+
}
65+
66+
.gallery img {
67+
display: none; /* only show the img if not inside a gallery */
68+
}
69+
70+
figure a {
71+
position: absolute;
72+
left: 0;
73+
right: 0;
74+
top: 0;
75+
bottom: 0;
76+
}
77+
78+
figcaption {
79+
display: none;
80+
}

css/style.css

Lines changed: 175 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
1+
/* Globals */
2+
3+
body {
4+
font-family: 'Roboto', sans-serif;
5+
font-size: 14px;
6+
padding: 0;
7+
margin: 0;
8+
background-color: #f8f8f8;
9+
}
10+
11+
h1, .h1,
12+
h2, .h2,
13+
h3, .h3,
14+
h4, .h4,
15+
h5, .h5,
16+
h6, .h6 {
17+
font-family: 'PT Sans Narrow', sans-serif;
18+
font-weight: normal;
19+
color: #111;
20+
}
21+
22+
h3 {
23+
font-size: 1.45em;
24+
}
25+
26+
/* Links */
27+
28+
a, a:visited, a:active {
29+
color: #48d;
30+
text-decoration: none;
31+
}
32+
33+
a:hover {
34+
color: #f84;
35+
text-decoration: none;
36+
}
37+
38+
h1 a:link, h1 a:visited,
39+
h2 a:link, h2 a:visited,
40+
h3 a:link, h3 a:visited {
41+
color: #111;
42+
}
43+
44+
h1 a:hover,
45+
h2 a:hover,
46+
h3 a:hover {
47+
color: #48d;
48+
}
49+
50+
/* Container width */
51+
52+
.container {
53+
max-width: 900px;
54+
}
55+
56+
@media (min-width: 1200px) {
57+
.container {
58+
width: 900px;
59+
}
60+
}
61+
62+
/* Masthead */
63+
64+
.site-masthead {
65+
background-color: #fff;
66+
box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
67+
line-height: 20px;
68+
}
69+
70+
.site-masthead .container {
71+
position: relative;
72+
}
73+
74+
/* Nav links */
75+
76+
.site-nav {
77+
text-align: center;
78+
font-family: 'PT Sans Narrow', sans-serif;
79+
font-size: 19.6px;
80+
color: #111;
81+
}
82+
83+
@media only screen and (min-width:700px) {
84+
.site-nav {
85+
position: absolute;
86+
bottom: 0;
87+
right: 0;
88+
}
89+
}
90+
91+
ul.menu {
92+
padding-left: 0;
93+
padding-right: 0;
94+
}
95+
96+
li.menu-item {
97+
position: relative;
98+
display: inline-block;
99+
}
100+
101+
.menu-item a:link,
102+
.menu-item a:visited {
103+
padding: 13px;
104+
box-sizing: border-box;
105+
color: #111;
106+
}
107+
108+
.menu-item a:hover {
109+
color: #48d;
110+
text-decoration: none;
111+
box-shadow: inset 0px -2px #48d;
112+
box-sizing: border-box;
113+
padding: 13px;
114+
}
115+
116+
.current-menu-item a:link,
117+
.current-menu-item a:visited {
118+
color: #f84;
119+
box-shadow: inset 0 -2px #f84;
120+
box-sizing: border-box;
121+
padding: 13px;
122+
}
123+
124+
/* Title and description */
125+
126+
.site-header {
127+
display: inline-block;
128+
}
129+
130+
.site-logo {
131+
vertical-align: middle;
132+
margin-bottom: 8px;
133+
margin-right: 1px;
134+
}
135+
136+
.site-title {
137+
margin-top: 20px;
138+
margin-bottom: 7px;
139+
color: #111;
140+
font-size: 40px;
141+
font-weight: normal;
142+
letter-spacing: 2px;
143+
}
144+
145+
.site-subtitle {
146+
display: block;
147+
font-size: 20px;
148+
font-weight: normal;
149+
color: #888;
150+
letter-spacing: 0px;
151+
}
152+
153+
@media only screen and (min-width:440px) {
154+
.site-subtitle {
155+
display: inline;
156+
}
157+
}
158+
159+
/* Footer */
160+
161+
.site-footer {
162+
padding: 40px 0;
163+
color: #999;
164+
text-align: center;
165+
font-size: 12px;
166+
}
167+
168+
/* Image gallery */
169+
170+
.pswp__counter,
171+
.pswp__button--share,
172+
.pswp__button--fs,
173+
.pswp__button--zoom {
174+
display: none !important;
175+
}

0 commit comments

Comments
 (0)