[ADD] report_carbone, jsonifier, export_json : carbone is an alternative to Py3o
This commit is contained in:
297
report_carbone/static/description/assets/description.css
Normal file
297
report_carbone/static/description/assets/description.css
Normal file
@@ -0,0 +1,297 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
a {
|
||||
color: "#5e17eb";
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Inter", sans-serif;
|
||||
line-height: 1.7;
|
||||
color: #001e2b;
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.header {
|
||||
border-radius: 0;
|
||||
margin-bottom: 40px;
|
||||
position: relative;
|
||||
}
|
||||
.header-title-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 40px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.header-icon {
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.header-icon img {
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.header h1 {
|
||||
color: #5e17eb;
|
||||
font-size: 3em;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
.header .subtitle {
|
||||
font-size: 1.8em;
|
||||
opacity: 0.85;
|
||||
margin-bottom: 15px;
|
||||
font-weight: 250;
|
||||
color: #e6fffa;
|
||||
}
|
||||
.badge {
|
||||
display: inline-block;
|
||||
background: transparent;
|
||||
border: 1px solid rgba(245, 243, 237, 0.3);
|
||||
padding: 10px 24px;
|
||||
border-radius: 2px;
|
||||
margin: 10px 8px;
|
||||
font-size: 0.85em;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin-bottom: 80px;
|
||||
padding: 0;
|
||||
background: transparent;
|
||||
border-radius: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.section h2 {
|
||||
color: #001e2b;
|
||||
font-size: 2.2em;
|
||||
margin-bottom: 30px;
|
||||
border-bottom: 1px solid #001e2b;
|
||||
padding-bottom: 15px;
|
||||
font-weight: 400;
|
||||
letter-spacing: -0.01em;
|
||||
}
|
||||
|
||||
.section h3 {
|
||||
color: #001e2b;
|
||||
font-size: 1.4em;
|
||||
margin-top: 40px;
|
||||
margin-bottom: 20px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.features-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 30px;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.feature-card {
|
||||
background: #ffffff;
|
||||
padding: 35px;
|
||||
border-radius: 16px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
||||
}
|
||||
|
||||
.feature-card:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
|
||||
.feature-card h4 {
|
||||
color: #001e2b;
|
||||
font-size: 1.15em;
|
||||
margin-bottom: 12px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.feature-card .icon {
|
||||
font-size: 1.4em;
|
||||
margin-right: 12px;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
.feature-card p {
|
||||
color: #5a5a5a;
|
||||
line-height: 1.6;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
.screenshot-placeholder {
|
||||
background: #ffffff;
|
||||
border-radius: 0;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
margin: 30px 0;
|
||||
color: #8a8a8a;
|
||||
font-size: 1em;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0.02em;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.screenshot-placeholder img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
object-fit: contain;
|
||||
display: block;
|
||||
}
|
||||
.benefits-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.benefits-list li {
|
||||
padding: 20px 0;
|
||||
border-bottom: 1px solid #e8e6df;
|
||||
display: flex;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.benefits-list li:before {
|
||||
content: "—";
|
||||
color: #5e17eb;
|
||||
font-weight: 400;
|
||||
font-size: 1.3em;
|
||||
margin-right: 20px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
.tech-specs {
|
||||
background: #ffffff;
|
||||
padding: 30px;
|
||||
border-radius: 0;
|
||||
margin-top: 30px;
|
||||
border: 1px solid #e8e6df;
|
||||
}
|
||||
|
||||
.tech-specs table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.tech-specs td {
|
||||
padding: 15px 0;
|
||||
border-bottom: 1px solid #e8e6df;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
|
||||
.tech-specs td:first-child {
|
||||
font-weight: 500;
|
||||
color: #001e2b;
|
||||
width: 240px;
|
||||
}
|
||||
|
||||
.tech-specs td:last-child {
|
||||
color: #5a5a5a;
|
||||
}
|
||||
|
||||
.cta-section {
|
||||
background: #001e2b;
|
||||
color: #f5f3ed;
|
||||
padding: 70px 60px;
|
||||
border-radius: 0;
|
||||
text-align: center;
|
||||
margin-top: 80px;
|
||||
}
|
||||
|
||||
.cta-button {
|
||||
display: inline-block;
|
||||
background: transparent;
|
||||
color: #f5f3ed;
|
||||
border: 2px solid #f5f3ed;
|
||||
padding: 16px 45px;
|
||||
border-radius: 2px;
|
||||
text-decoration: none;
|
||||
font-weight: 400;
|
||||
font-size: 1em;
|
||||
margin-top: 25px;
|
||||
transition: all 0.3s ease;
|
||||
letter-spacing: 0.05em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.cta-button:hover {
|
||||
background: #f5f3ed;
|
||||
color: #001e2b;
|
||||
transform: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.doc-ressource-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
margin-left: 40px;
|
||||
line-height: 2;
|
||||
}
|
||||
.doc-ressource-list li:before {
|
||||
content: "—";
|
||||
color: #5e17eb;
|
||||
font-weight: 400;
|
||||
font-size: 1.3em;
|
||||
margin-right: 20px;
|
||||
margin-top: 2px;
|
||||
}
|
||||
.highlight-box {
|
||||
background: #5e17eb;
|
||||
border-left: 3px solid #001e2b;
|
||||
padding: 25px 30px;
|
||||
margin: 30px 0;
|
||||
border-radius: 0;
|
||||
color: #001e2b;
|
||||
}
|
||||
|
||||
.highlight-box strong {
|
||||
color: #001e2b;
|
||||
}
|
||||
.green-horizontal {
|
||||
width: 70px;
|
||||
height: 1px;
|
||||
background-color: #5e17eb;
|
||||
position: relative;
|
||||
flex-shrink: 0;
|
||||
right: 90px;
|
||||
}
|
||||
|
||||
.text-item .text-bottom {
|
||||
font-weight: 700;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
.text-item .text-item .text-bottom {
|
||||
font-size: 44px;
|
||||
}
|
||||
.title-item h3 {
|
||||
margin: 0;
|
||||
}
|
||||
.title-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.footer {
|
||||
text-align: center;
|
||||
padding: 40px 20px;
|
||||
color: #666;
|
||||
}
|
||||
Reference in New Issue
Block a user