miguelgargallo's picture
Update index.html
56e33bc verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pencil Works | Licensed Software</title>
<style>
:root {
--primary: #3a86ff;
--secondary: #8338ec;
--accent: #ff006e;
--background: #f8f9fa;
--text: #212529;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: var(--background);
color: var(--text);
line-height: 1.6;
padding: 0 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
}
header {
text-align: center;
margin-bottom: 50px;
position: relative;
padding: 20px 0;
}
header::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
height: 4px;
width: 100px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
border-radius: 2px;
}
h1 {
font-size: 3rem;
margin-bottom: 20px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.logo {
width: 120px;
height: 120px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.logo span {
font-size: 2.5rem;
color: white;
font-weight: bold;
}
.card {
background: white;
border-radius: 12px;
padding: 30px;
margin-bottom: 30px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.license-section {
margin-bottom: 40px;
}
.license-section h2 {
color: var(--primary);
margin-bottom: 15px;
font-size: 1.8rem;
}
.condition {
padding: 15px;
border-left: 4px solid var(--accent);
background: rgba(255, 0, 110, 0.05);
margin-bottom: 15px;
}
.disclaimer {
padding: 20px;
background: rgba(58, 134, 255, 0.05);
border-radius: 8px;
font-style: italic;
}
.copyright {
text-align: center;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #eee;
color: #666;
}
.btn {
display: inline-block;
padding: 12px 24px;
background: linear-gradient(90deg, var(--primary), var(--secondary));
color: white;
border: none;
border-radius: 6px;
font-size: 1rem;
cursor: pointer;
text-decoration: none;
transition: transform 0.2s, box-shadow 0.2s;
margin: 10px 0;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
.logo {
width: 80px;
height: 80px;
}
.logo span {
font-size: 1.5rem;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<div class="logo">
<span>PW</span>
</div>
<h1>Pencil Works Software</h1>
<p>Proprietary software under the Pylar AI Labs ML Non Commercial License</p>
</header>
<div class="card">
<div class="license-section">
<h2>Pylar AI Labs ML Non Commercial License</h2>
<p><strong>© 2025, All Rights Reserved. Pencil Works, US.</strong></p>
</div>
<div class="license-section">
<h2>Permission</h2>
<p>Permission is not hereby granted, not free of charge, to any person obtaining a copy of this software
and
associated documentation files (the "Software"), not to deal in the Software under any
circumstances,
including a limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell
copies of the Software, and to not to permit persons to whom the Software is furnished to do so,
subject to
the following conditions:</p>
</div>
<div class="license-section">
<h2>Conditions</h2>
<div class="condition">
<p>1) The above copyright notice and this permission notice shall be included in all copies or
substantial
portions of the Software.</p>
</div>
<div class="condition">
<p>2) Only Pencil Works, US Employees can use, publish and distribute this software. Any other use
is strictly
prohibited. Any work using, copying, modifying, merging, publishing, distributing, sublicensing,
and/or
selling copies of the Software must explicitly acknowledge "Pencil Works, US" as the original
author of this
work and will be considered a violation of this license if this condition is not met and
approved by the
original author. Else it is illegal to use this work.</p>
</div>
<div class="condition">
<p>3) The file in which this license is included (License.md) must remain unmodified. Any
modifications to
this file will be considered a violation of this license.</p>
</div>
</div>
<div class="license-section">
<h2>Disclaimer</h2>
<div class="disclaimer">
<p>The Software is provided "as is", without warranty of any kind, express or implied, including but
not
limited to the warranties of merchantability, fitness for a particular purpose and
noninfringement. In no
event shall the authors or copyright holders be liable for any claim, damages or other
liability, whether in
an action of contract, tort or otherwise, arising from, out of or in connection with the
Software or the use
or other dealings in the Software.</p>
</div>
</div>
</div>
</div>
</body>
</html>