Spaces:
Running
Running
File size: 5,102 Bytes
4e85ec7 dda6d7e 75ef697 dda6d7e eba0b91 dda6d7e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pylar AI Creative ML Free License</title>
<style>
:root {
--primary: #2a9d8f;
--secondary: #264653;
--accent: #e9c46a;
--light: #f8f9fa;
--dark: #212529;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: var(--dark);
background-color: var(--light);
padding: 2rem;
}
.container {
max-width: 800px;
margin: 0 auto;
background-color: white;
border-radius: 12px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
header {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
padding: 2.5rem 2rem;
text-align: center;
}
h1 {
font-size: 2.2rem;
margin-bottom: 0.5rem;
font-weight: 800;
}
.copyright {
margin-top: 1rem;
font-size: 0.95rem;
opacity: 0.9;
}
.content {
padding: 2rem;
}
.section {
margin-bottom: 2rem;
padding-bottom: 1rem;
}
.section:not(:last-child) {
border-bottom: 1px solid #e9ecef;
}
h2 {
font-size: 1.5rem;
color: var(--secondary);
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid rgba(42, 157, 143, 0.2);
}
p {
margin-bottom: 1rem;
font-size: 1.05rem;
line-height: 1.7;
}
ol {
padding-left: 1.8rem;
margin-bottom: 1rem;
}
li {
margin-bottom: 0.8rem;
}
.footer {
text-align: center;
padding: 1.5rem;
background-color: #f8f9fa;
border-top: 1px solid #e9ecef;
}
a {
color: var(--primary);
text-decoration: none;
font-weight: 500;
}
a:hover {
text-decoration: underline;
}
.highlight {
background-color: rgba(42, 157, 143, 0.1);
padding: 0.2rem 0.4rem;
border-radius: 4px;
font-weight: 500;
}
@media (max-width: 768px) {
body {
padding: 1rem;
}
header {
padding: 1.5rem 1rem;
}
h1 {
font-size: 1.8rem;
}
.content {
padding: 1.5rem;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Pylar AI Creative ML Free License</h1>
<div class="copyright">Copyright (C) 2023 PylarAI</div>
</header>
<div class="content">
<div class="section">
<h2>Permission</h2>
<p>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the Software without restriction, including without
limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
Software, and to permit persons to whom the Software is furnished to do so, subject to the following
conditions:
</p>
</div>
<div class="section">
<h2>Conditions</h2>
<ol>
<li>
The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software.
</li>
<li>
Any work using, copying, modifying, merging, publishing, distributing, sublicensing, and/or selling copies
of the Software must explicitly acknowledge <span class="highlight"><a href="mailto:[email protected]"
target="_blank" rel="noopener noreferrer">✉️ Superdatas</a></span> as the original author of this work.
</li>
<li>
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.
</li>
</ol>
</div>
<div class="section">
<h2>Disclaimer</h2>
<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 class="footer">
<p>
For further details about this license, please visit:
<a href="https://huggingface.co/spaces/superdatas/free-license" target="_blank"
rel="noopener noreferrer">https://huggingface.co/spaces/superdatas/free-license</a>
</p>
</div>
</div>
</body>
</html> |