forked from blender/cycles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1763c30
Showing
64 changed files
with
1,370 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Generic files to ignore | ||
.* | ||
.*.swp | ||
|
||
# Python cache | ||
__pycache__/ | ||
|
||
# Editors | ||
*~ | ||
*.swp | ||
*.swo | ||
*# | ||
|
||
# QtCreator | ||
CMakeLists.txt.user | ||
|
||
# ms-windows | ||
Thumbs.db | ||
ehthumbs.db | ||
Desktop.ini | ||
|
||
# Local patches | ||
/*.patch | ||
/*.diff | ||
|
||
# Build folders | ||
bin-dbg | ||
bin-opt | ||
build*/ | ||
install*/ | ||
|
||
# OSL compiled examples | ||
examples/osl/*.oso |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
www.cycles-renderer.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<!DOCTYPE html> | ||
<html><head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"> | ||
<link rel="stylesheet" type="text/css" href="https://netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> | ||
<link rel="stylesheet" type="text/css" href="/css/style.css"> | ||
<title>Cycles</title> | ||
</head> | ||
<body><div class="site-masthead"> | ||
<div class="container"> | ||
|
||
<div class="site-header"> | ||
<h1 class="site-title"> | ||
<a href="/">Cycles</a> <span class="site-subtitle">Open Source Production Rendering</span> | ||
</h1> | ||
</div> | ||
|
||
<div class="site-nav"> | ||
<ul class="menu"> | ||
|
||
<li class="menu-item"> | ||
<a class="link" href="/features/"> | ||
|
||
|
||
Features | ||
</a> | ||
</li> | ||
|
||
<li class="menu-item"> | ||
<a class="link" href="/development/"> | ||
|
||
|
||
Development | ||
</a> | ||
</li> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="container"> | ||
<div id="content"> | ||
<h1>Categories</h1> | ||
|
||
|
||
</div></div> | ||
<p class="site-footer">© 2023 Cycles Developers</p> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8" standalone="yes"?> | ||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> | ||
<channel> | ||
<title>Categories on Cycles</title> | ||
<link>https://www.cycles-renderer.org/categories/</link> | ||
<description>Recent content in Categories on Cycles</description> | ||
<generator>Hugo -- gohugo.io</generator><atom:link href="https://www.cycles-renderer.org/categories/index.xml" rel="self" type="application/rss+xml" /> | ||
</channel> | ||
</rss> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/* SPDX-License-Identifier: MIT | ||
* Copyright (c) 2017 Li-Wen Yip */ | ||
|
||
/* Grid Layout Styles */ | ||
|
||
.gallery { | ||
overflow: hidden; | ||
margin: 10px; | ||
max-width: 900px; | ||
} | ||
.gallery .box { | ||
float: left; | ||
position: relative; | ||
/* Default: 1 tile wide */ | ||
width: 100%; | ||
padding-bottom: 100%; | ||
} | ||
@media only screen and (min-width : 365px) { | ||
/* Tablet view: 2 tiles */ | ||
.gallery .box { | ||
width: 50%; | ||
padding-bottom: 50%; | ||
} | ||
} | ||
@media only screen and (min-width : 480px) { | ||
/* Small desktop / ipad view: 3 tiles */ | ||
.gallery .box { | ||
width: 33.3%; | ||
padding-bottom: 33.3%; /* */ | ||
} | ||
} | ||
@media only screen and (min-width : 9999px) { | ||
/* Medium desktop: 4 tiles */ | ||
.box { | ||
width: 25%; | ||
padding-bottom: 25%; | ||
} | ||
} | ||
|
||
/* figure styles */ | ||
figure { | ||
position:relative; /* purely to allow absolution positioning of figcaption */ | ||
overflow: hidden; | ||
} | ||
.gallery figure { | ||
position: absolute; | ||
left: 5px; | ||
right: 5px; | ||
top: 5px; | ||
bottom: 5px; | ||
} | ||
|
||
/* img / a styles */ | ||
|
||
.gallery .img { | ||
position: absolute; | ||
left: 0; | ||
right: 0; | ||
top: 0; | ||
bottom: 0; | ||
background-size: cover; | ||
background-position: 50% 50%; | ||
background-repeat: no-repeat; | ||
} | ||
|
||
.gallery img { | ||
display: none; /* only show the img if not inside a gallery */ | ||
} | ||
|
||
figure a { | ||
position: absolute; | ||
left: 0; | ||
right: 0; | ||
top: 0; | ||
bottom: 0; | ||
} | ||
|
||
figcaption { | ||
display: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,175 @@ | ||
/* Globals */ | ||
|
||
body { | ||
font-family: 'Roboto', sans-serif; | ||
font-size: 14px; | ||
padding: 0; | ||
margin: 0; | ||
background-color: #f8f8f8; | ||
} | ||
|
||
h1, .h1, | ||
h2, .h2, | ||
h3, .h3, | ||
h4, .h4, | ||
h5, .h5, | ||
h6, .h6 { | ||
font-family: 'PT Sans Narrow', sans-serif; | ||
font-weight: normal; | ||
color: #111; | ||
} | ||
|
||
h3 { | ||
font-size: 1.45em; | ||
} | ||
|
||
/* Links */ | ||
|
||
a, a:visited, a:active { | ||
color: #48d; | ||
text-decoration: none; | ||
} | ||
|
||
a:hover { | ||
color: #f84; | ||
text-decoration: none; | ||
} | ||
|
||
h1 a:link, h1 a:visited, | ||
h2 a:link, h2 a:visited, | ||
h3 a:link, h3 a:visited { | ||
color: #111; | ||
} | ||
|
||
h1 a:hover, | ||
h2 a:hover, | ||
h3 a:hover { | ||
color: #48d; | ||
} | ||
|
||
/* Container width */ | ||
|
||
.container { | ||
max-width: 900px; | ||
} | ||
|
||
@media (min-width: 1200px) { | ||
.container { | ||
width: 900px; | ||
} | ||
} | ||
|
||
/* Masthead */ | ||
|
||
.site-masthead { | ||
background-color: #fff; | ||
box-shadow: 1px 1px 1px rgba(0,0,0,0.1); | ||
line-height: 20px; | ||
} | ||
|
||
.site-masthead .container { | ||
position: relative; | ||
} | ||
|
||
/* Nav links */ | ||
|
||
.site-nav { | ||
text-align: center; | ||
font-family: 'PT Sans Narrow', sans-serif; | ||
font-size: 19.6px; | ||
color: #111; | ||
} | ||
|
||
@media only screen and (min-width:700px) { | ||
.site-nav { | ||
position: absolute; | ||
bottom: 0; | ||
right: 0; | ||
} | ||
} | ||
|
||
ul.menu { | ||
padding-left: 0; | ||
padding-right: 0; | ||
} | ||
|
||
li.menu-item { | ||
position: relative; | ||
display: inline-block; | ||
} | ||
|
||
.menu-item a:link, | ||
.menu-item a:visited { | ||
padding: 13px; | ||
box-sizing: border-box; | ||
color: #111; | ||
} | ||
|
||
.menu-item a:hover { | ||
color: #48d; | ||
text-decoration: none; | ||
box-shadow: inset 0px -2px #48d; | ||
box-sizing: border-box; | ||
padding: 13px; | ||
} | ||
|
||
.current-menu-item a:link, | ||
.current-menu-item a:visited { | ||
color: #f84; | ||
box-shadow: inset 0 -2px #f84; | ||
box-sizing: border-box; | ||
padding: 13px; | ||
} | ||
|
||
/* Title and description */ | ||
|
||
.site-header { | ||
display: inline-block; | ||
} | ||
|
||
.site-logo { | ||
vertical-align: middle; | ||
margin-bottom: 8px; | ||
margin-right: 1px; | ||
} | ||
|
||
.site-title { | ||
margin-top: 20px; | ||
margin-bottom: 7px; | ||
color: #111; | ||
font-size: 40px; | ||
font-weight: normal; | ||
letter-spacing: 2px; | ||
} | ||
|
||
.site-subtitle { | ||
display: block; | ||
font-size: 20px; | ||
font-weight: normal; | ||
color: #888; | ||
letter-spacing: 0px; | ||
} | ||
|
||
@media only screen and (min-width:440px) { | ||
.site-subtitle { | ||
display: inline; | ||
} | ||
} | ||
|
||
/* Footer */ | ||
|
||
.site-footer { | ||
padding: 40px 0; | ||
color: #999; | ||
text-align: center; | ||
font-size: 12px; | ||
} | ||
|
||
/* Image gallery */ | ||
|
||
.pswp__counter, | ||
.pswp__button--share, | ||
.pswp__button--fs, | ||
.pswp__button--zoom { | ||
display: none !important; | ||
} |
Oops, something went wrong.