mirror of
https://github.com/Tooloop/Tooloop-Packages.git
synced 2026-04-27 20:41:37 +02:00
change folder structure and control files to newest concept
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<html>
|
||||
<head>
|
||||
<title> Welcome to Processing 3 </title>
|
||||
<link rel="stylesheet" type="text/css" href="style.css"> </style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Using a table here as a layout hack, as CSS "vertical-align: middle;"
|
||||
is not supported by the Java HTML renderer. -->
|
||||
<table>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<img src="../icons/pde-64.png" width="64" height="64">
|
||||
</td>
|
||||
<td valign="middle">
|
||||
<h1>Welcome to Processing 3</h1>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p>
|
||||
<a href="https://github.com/processing/processing/wiki/Changes-in-3.0">Read about what’s new in 3.0 →</a>
|
||||
</p>
|
||||
|
||||
<p class="inset">
|
||||
Note that some sketches from Processing 2 may not be compatible.
|
||||
<a href="https://github.com/processing/processing/wiki/Changes-in-3.0">What has changed?</a>
|
||||
</p>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,50 @@
|
||||
<html>
|
||||
<head>
|
||||
<title> Welcome to Processing 3 </title>
|
||||
<link rel="stylesheet" type="text/css" href="style.css"> </style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Using a table here as a layout hack, as CSS "vertical-align: middle;"
|
||||
is not supported by the Java HTML renderer. -->
|
||||
<table>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<img src="../icons/pde-64.png" width="64" height="64">
|
||||
</td>
|
||||
<td valign="middle">
|
||||
<h1>Welcome to Processing 3</h1>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p>
|
||||
<a href="https://github.com/processing/processing/wiki/Changes-in-3.0">Read about what’s new in 3.0 →</a>
|
||||
</p>
|
||||
|
||||
<p class="inset">
|
||||
Note that some sketches from Processing 2 may not be compatible.
|
||||
<a href="https://github.com/processing/processing/wiki/Changes-in-3.0">What has changed?</a>
|
||||
</p>
|
||||
|
||||
<div id="new_sketchbook">
|
||||
<p>
|
||||
Since older sketches may not be compatible, we recommend creating a new sketchbook folder, so Processing 2 and 3 can happily coexist. This is a one-time process. <a href="https://github.com/processing/processing/wiki/Multiple-Sketchbooks">Read more about it.</a>
|
||||
</p>
|
||||
|
||||
<table class="inset">
|
||||
<tr>
|
||||
<td>
|
||||
<a href="#sketchbook">Click here</a> to create a new sketchbook folder for Processing 3 <em>(recommended!)</em>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Otherwise, your existing sketchbook folder will be used for both old and new sketches (may cause conflicts with installed libraries)
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,43 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
font-family: "Processing Sans Pro", sans-serif;
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin-bottom: 0;
|
||||
/* can't get the Semibold to work properly */
|
||||
font-family: "Processing Sans Pro", sans-serif;
|
||||
font-size: 18px;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
p, td {
|
||||
margin-bottom: 0;
|
||||
font-size: 11px;
|
||||
line-height: 12px;
|
||||
}
|
||||
|
||||
table {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
p.inset, table.inset {
|
||||
padding: 10px;
|
||||
background-color: rgb(224, 253, 251);
|
||||
}
|
||||
|
||||
a {
|
||||
color: #2c7bb5;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#startButton {
|
||||
margin-left: 50px;
|
||||
}
|
||||
Reference in New Issue
Block a user