parent
5e850f3386
commit
452e6359e0
Binary file not shown.
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 12 KiB |
@ -1,11 +1,18 @@
|
||||
# Outils
|
||||
# Screenhot
|
||||
|
||||
Project Create with
|
||||

|
||||
|
||||
- Css/Scss
|
||||
- Qcms
|
||||
- Inskape
|
||||
- FontForge
|
||||
- Illustrator
|
||||
- Html
|
||||
- Javascript
|
||||
## Project QCMS
|
||||
|
||||
***Tools***
|
||||
|
||||
> Template
|
||||
|
||||
1. Html
|
||||
2. Css/Scss
|
||||
3. Javascript
|
||||
|
||||
Graphics
|
||||
4. Inkscape
|
||||
5. Illustrator
|
||||
6. FontForge
|
||||
|
||||
@ -0,0 +1,38 @@
|
||||
.border {
|
||||
border:1px solid #CAD5E0 ;
|
||||
}
|
||||
.border-round {
|
||||
padding:6px;
|
||||
border-radius:8px;
|
||||
}
|
||||
.border-round-top-left{
|
||||
border-top-left-radius: 8px;
|
||||
padding:6px;
|
||||
}
|
||||
.border-round-top-right{
|
||||
border-top-right-radius: 8px;
|
||||
padding:6px;
|
||||
}
|
||||
.border-round-bottom-right{
|
||||
border-bottom-right-radius: 8px;
|
||||
padding:6px;
|
||||
}
|
||||
.border-round-bottom-left{
|
||||
border-bottom-left-radius: 8px;
|
||||
padding:6px;
|
||||
}
|
||||
|
||||
|
||||
.border-right{
|
||||
border-right:1px solid #CAD5E0;
|
||||
|
||||
}
|
||||
|
||||
.border-left{
|
||||
border-left:1px solid #CAD5E0;
|
||||
}
|
||||
|
||||
|
||||
.border-bottom { border-bottom:1px solid #CAD5E0}
|
||||
.border-top { border-top:1px solid #CAD5E0}
|
||||
|
||||
@ -0,0 +1,31 @@
|
||||
/**
|
||||
* This file styles the footer of the page
|
||||
*/
|
||||
.footer {
|
||||
position: relative;
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
-ms-grid-columns: 1fr 0.25rem 1fr 0.25rem 1fr;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 0.25rem;
|
||||
padding: 0.9375rem;
|
||||
font-size: 0.8125rem;
|
||||
background-color: #2e2e2e;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
text-transform: capitalize;
|
||||
-ms-grid-row-span: auto;
|
||||
grid-row-end: auto;
|
||||
padding-left: calc((100% - 67.5rem) / 2);
|
||||
padding-right: calc((100% - 67.5rem) / 2);
|
||||
font-family: monospace;
|
||||
text-transform: uppercase;
|
||||
color: #999999;
|
||||
}
|
||||
.footer div:nth-child(2) {
|
||||
text-align: center;
|
||||
}
|
||||
.footer div:last-child {
|
||||
text-align: right;
|
||||
}
|
||||
@ -0,0 +1,45 @@
|
||||
/** Px -> rem size **/
|
||||
.main .header {
|
||||
width: 67.5rem;
|
||||
min-height: 37.5rem;
|
||||
margin: 0 auto;
|
||||
-ms-flex-line-pack: center;
|
||||
align-content: center;
|
||||
text-align: center;
|
||||
border-bottom-left-radius: 3.125rem;
|
||||
border-bottom-right-radius: 3.125rem;
|
||||
border: 1px solid rgba(62, 62, 62, 0.3137254902);
|
||||
}
|
||||
|
||||
.main .header .icon {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.main .header .icon img {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
}
|
||||
|
||||
.main .header .title {
|
||||
width: 70%;
|
||||
margin: 0 auto;
|
||||
font-size: 4.5rem;
|
||||
font-weight: 800;
|
||||
text-wrap: balance;
|
||||
margin-bottom: 1.25rem;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.main .header .subtitle {
|
||||
width: 50%;
|
||||
margin: 0 auto;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.125rem;
|
||||
font-size: 0.8125rem;
|
||||
font-weight: 800;
|
||||
text-wrap: balance;
|
||||
color: #4e4e4e;
|
||||
line-height: 1.8;
|
||||
}
|
||||
@ -0,0 +1,349 @@
|
||||
/**
|
||||
* This file implements theme Open Source Software, the expectation is just a pager that presents a tool/software
|
||||
*/
|
||||
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400..800;1,400..800&display=swap");
|
||||
*,
|
||||
*::before,
|
||||
*::after {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/** Px -> rem size **/
|
||||
body {
|
||||
font-family: "Plus Jakarta Sans", sans-serif;
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.main {
|
||||
width: 100%;
|
||||
min-height: 100dvh;
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
-ms-grid-columns: 0 1fr 0;
|
||||
grid-template-columns: 0 1fr 0;
|
||||
-ms-grid-columns: minmax(0, 1fr);
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.main .content {
|
||||
-ms-flex-item-align: center;
|
||||
-ms-grid-row-align: center;
|
||||
align-self: center;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.main .content .banner {
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
height: 200px;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-ms-flex-line-pack: center;
|
||||
align-content: center;
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
}
|
||||
|
||||
/* .main .pane {border-left:1px solid #CAD5E0; height:100%; padding:8px;} */
|
||||
.bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.small-text {
|
||||
font-size: 12px;
|
||||
font-weight: lighter;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.active {
|
||||
cursor: pointer;
|
||||
padding: 2px;
|
||||
margin: 2px;
|
||||
border-bottom: 2px solid transparent;
|
||||
}
|
||||
|
||||
.active:hover {
|
||||
border-bottom-color: #4682b4;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
.large-text {
|
||||
font-weight: bold;
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 2.75rem;
|
||||
font-weight: 700;
|
||||
text-wrap: balance;
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.75rem;
|
||||
font-weight: 700;
|
||||
text-wrap: balance;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
iframe {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
p {
|
||||
font-weight: 400;
|
||||
text-wrap: pretty;
|
||||
color: #4e4e4e;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
section {
|
||||
padding: 6.25rem 0 6.25rem 0;
|
||||
}
|
||||
|
||||
table, tr, td, th {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
ul, li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
border-spacing: 0;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.transport .product table tr {
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
-ms-grid-columns: 1fr 1.25rem 1fr 1.25rem 1fr;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 1.25rem;
|
||||
}
|
||||
.transport .product table td, .transport .product table th {
|
||||
padding: 0.625rem;
|
||||
padding-left: 1.875rem;
|
||||
padding-right: 1.875rem;
|
||||
}
|
||||
.transport .product table td {
|
||||
font-size: 0.8125rem;
|
||||
font-weight: 800;
|
||||
line-height: 1.3;
|
||||
}
|
||||
.transport .product table td .small {
|
||||
font-weight: 400;
|
||||
font-size: 0.6875rem;
|
||||
font-family: monospace;
|
||||
color: #4e4e4e;
|
||||
}
|
||||
.transport .product table th {
|
||||
display: block;
|
||||
min-height: 9.375rem;
|
||||
text-align: center;
|
||||
padding: 1.875rem;
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
font-size: 1.75rem;
|
||||
font-weight: 700;
|
||||
color: #1A73E8;
|
||||
text-transform: capitalize;
|
||||
border-top: 1px solid rgba(26, 115, 232, 0.5647058824);
|
||||
border-top-left-radius: 1.25rem;
|
||||
border-top-right-radius: 1.25rem;
|
||||
}
|
||||
.transport .product table th:first-child {
|
||||
border-top: 1px solid rgba(78, 78, 78, 0.3137254902);
|
||||
}
|
||||
.transport .product table tr:last-child > td {
|
||||
border-bottom: 1px solid rgba(26, 115, 232, 0.5647058824);
|
||||
border-bottom-left-radius: 1.25rem;
|
||||
border-bottom-right-radius: 1.25rem;
|
||||
padding-bottom: 1.875rem;
|
||||
}
|
||||
.transport .product table tr:last-child > td:first-child {
|
||||
border-bottom: 1px solid rgba(78, 78, 78, 0.3137254902);
|
||||
}
|
||||
.transport .product table tr > td:nth-child(2), .transport .product table tr > td:nth-child(3) {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/** main content sections **/
|
||||
.notebook h2, .notebook p {
|
||||
text-align: center;
|
||||
}
|
||||
.notebook p {
|
||||
margin-top: 1.875rem;
|
||||
}
|
||||
|
||||
.m-content {
|
||||
position: relative;
|
||||
width: 67.5rem;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.transport .m-content th, .transport .m-content td {
|
||||
border-left: 1px solid rgba(26, 115, 232, 0.5647058824);
|
||||
border-right: 1px solid rgba(26, 115, 232, 0.5647058824);
|
||||
}
|
||||
.transport .m-content th:first-child, .transport .m-content td:first-child {
|
||||
border-left: 1px solid rgba(78, 78, 78, 0.3137254902);
|
||||
border-right: 1px solid rgba(78, 78, 78, 0.3137254902);
|
||||
}
|
||||
|
||||
.notebook .m-content {
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
gap: 3.125rem;
|
||||
}
|
||||
|
||||
.m-price--plan {
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
gap: 3.125rem;
|
||||
}
|
||||
.m-price--plan h2 {
|
||||
text-align: center;
|
||||
width: 60%;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.m-content--design1 {
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
-ms-grid-columns: 1fr 1.25rem 4fr;
|
||||
grid-template-columns: 1fr 4fr;
|
||||
min-height: 18.75rem;
|
||||
gap: 1.25rem;
|
||||
}
|
||||
|
||||
.m-panel--list {
|
||||
border: 1px solid rgba(78, 78, 78, 0.3137254902);
|
||||
}
|
||||
.m-panel--list li {
|
||||
position: relative;
|
||||
height: 2.5rem;
|
||||
text-transform: uppercase;
|
||||
font-size: 0.8125rem;
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
font-family: monospace;
|
||||
padding-left: 1.25rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
.m-panel--list li::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: -1px;
|
||||
width: 1px;
|
||||
height: 100%;
|
||||
background-color: #1A73E8;
|
||||
visibility: hidden;
|
||||
}
|
||||
.m-panel--list li:hover::before {
|
||||
visibility: visible;
|
||||
}
|
||||
.m-panel--list li:hover {
|
||||
color: #1A73E8;
|
||||
}
|
||||
|
||||
.m-content--design1 > div:last-child {
|
||||
border: 1px solid rgba(62, 62, 62, 0.3137254902);
|
||||
padding: 1.25rem;
|
||||
border-radius: 0.625rem;
|
||||
min-height: 37.5rem;
|
||||
}
|
||||
|
||||
.design-2 {
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
gap: 3.125rem;
|
||||
}
|
||||
|
||||
.design-2 .license {
|
||||
position: relative;
|
||||
font-family: monospace;
|
||||
font-weight: 400;
|
||||
text-wrap: pretty;
|
||||
font-size: 1rem;
|
||||
text-transform: lowercase;
|
||||
color: #4e4e4e;
|
||||
line-height: 1.8;
|
||||
-webkit-column-count: 2;
|
||||
-moz-column-count: 2;
|
||||
column-count: 2;
|
||||
-webkit-column-gap: 2.5rem;
|
||||
-moz-column-gap: 2.5rem;
|
||||
column-gap: 2.5rem;
|
||||
-webkit-column-fill: balance;
|
||||
-moz-column-fill: balance;
|
||||
column-fill: balance;
|
||||
}
|
||||
|
||||
.design-2 > div:last-child {
|
||||
border: 1px solid rgba(62, 62, 62, 0.3137254902);
|
||||
padding: 1.875rem;
|
||||
border-radius: 0.625rem;
|
||||
background-color: rgba(68, 68, 68, 0.1882352941);
|
||||
color: #3e3e3e;
|
||||
}
|
||||
.design-2 > div:last-child h3 {
|
||||
text-align: center;
|
||||
color: #000;
|
||||
margin-bottom: 2.5rem;
|
||||
}
|
||||
|
||||
.design-2 .supported {
|
||||
position: relative;
|
||||
}
|
||||
.design-2 .supported table {
|
||||
margin-top: 3.125rem;
|
||||
width: 70%;
|
||||
margin: 0 auto;
|
||||
font-family: monospace;
|
||||
font-size: 0.8125rem;
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
}
|
||||
.design-2 .supported table th {
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
padding-top: 0.875rem;
|
||||
padding-bottom: 0.875rem;
|
||||
background-color: #1A73E8;
|
||||
border-left: 1px solid rgba(255, 255, 255, 0.2509803922);
|
||||
}
|
||||
.design-2 .supported table th:first-child {
|
||||
border-top-left-radius: 0.3125rem;
|
||||
border-bottom-left-radius: 0.3125rem;
|
||||
border: 0;
|
||||
}
|
||||
.design-2 .supported table th:last-child {
|
||||
border-top-right-radius: 0.3125rem;
|
||||
border-bottom-right-radius: 0.3125rem;
|
||||
}
|
||||
.design-2 .supported table td {
|
||||
padding-top: 0.3125rem;
|
||||
padding-bottom: 0.3125rem;
|
||||
}
|
||||
@ -0,0 +1,197 @@
|
||||
/** Px -> rem size **/
|
||||
.menu .icon {
|
||||
width: 2.75rem;
|
||||
height: 2.75rem;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
background-color: #2e2e2e;
|
||||
justify-items: center;
|
||||
border-top-left-radius: 0.3125rem;
|
||||
border-bottom-left-radius: 0.3125rem;
|
||||
}
|
||||
.menu .icon svg path {
|
||||
fill: #1A73E8;
|
||||
}
|
||||
|
||||
.menu .icon img {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
.main .menu .sub-menu {
|
||||
display: none;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
-webkit-transform: translateY(100%);
|
||||
transform: translateY(100%);
|
||||
padding: 0.5rem;
|
||||
padding-top: 1.5rem;
|
||||
padding-left: 1.25rem;
|
||||
padding-right: 0.9375rem;
|
||||
width: -webkit-max-content;
|
||||
width: -moz-max-content;
|
||||
width: max-content;
|
||||
z-index: 90;
|
||||
font-size: 0.8125rem;
|
||||
font-family: monospace;
|
||||
font-weight: 400;
|
||||
letter-spacing: 0;
|
||||
text-align: left;
|
||||
-webkit-box-align: left;
|
||||
-ms-flex-align: left;
|
||||
align-items: left;
|
||||
color: #4e4e4e;
|
||||
background-color: transparent;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.item:last-child .sub-menu {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.main .menu .sub-menu::after {
|
||||
position: absolute;
|
||||
content: "";
|
||||
left: 0;
|
||||
top: 0.8125rem;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: 0;
|
||||
z-index: -1;
|
||||
border: 1px solid rgba(78, 78, 78, 0.3137254902);
|
||||
border-top: 0;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
.main .menu .item {
|
||||
position: relative;
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
color: #ffffff;
|
||||
font-weight: 700;
|
||||
padding: 0.75rem;
|
||||
padding-right: 1.5625rem;
|
||||
padding-left: 1.5625rem;
|
||||
height: 2.75rem;
|
||||
font-family: monospace;
|
||||
background-color: #2e2e2e;
|
||||
text-transform: uppercase;
|
||||
font-size: 0.8125rem;
|
||||
border-left: 1px solid rgba(153, 153, 153, 0.2509803922);
|
||||
}
|
||||
|
||||
.main .menu .item:last-child {
|
||||
border-top-right-radius: 0.3125rem;
|
||||
border-bottom-right-radius: 0.3125rem;
|
||||
}
|
||||
|
||||
.main .menu .item::after {
|
||||
position: absolute;
|
||||
content: "+";
|
||||
margin-top: -0.1875rem;
|
||||
margin-right: 1.25rem;
|
||||
-ms-grid-column-align: end;
|
||||
justify-self: end;
|
||||
color: #1A73E8;
|
||||
font-size: 1rem;
|
||||
z-index: 1;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.main .menu .item:has(div:last-child)::after {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.main .menu .item:has(div:last-child) {
|
||||
padding-right: 2.1875rem;
|
||||
}
|
||||
|
||||
.main .menu .item:hover .sub-menu {
|
||||
display: block;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.main .menu {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
width: 100%;
|
||||
height: 4.5rem;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background-color: #ffffff;
|
||||
border-bottom: 1px solid rgba(62, 62, 62, 0.3137254902);
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.main .menu .icon .button {
|
||||
border: 1px solid #CAD5E0;
|
||||
border-radius: 8px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
/**
|
||||
* TAB SPECIFICATIONS WITH RADIO BUTTONS AND LABELS
|
||||
*/
|
||||
.tab-content table {
|
||||
width: 99%;
|
||||
border-radius: 8px;
|
||||
padding: 8px;
|
||||
border: 1px solid #d3d3d3;
|
||||
}
|
||||
|
||||
.tab-content table tr:nth-child(even) {
|
||||
background-color: #f3f3f3;
|
||||
}
|
||||
|
||||
/* .tab-content {width:80%;} */
|
||||
.tabs {
|
||||
display: -ms-grid;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, 209px);
|
||||
gap: 0px;
|
||||
-ms-flex-line-pack: center;
|
||||
align-content: center;
|
||||
/* background-color: #f3f3f3; */
|
||||
padding-top: 4px;
|
||||
padding-left: 4px;
|
||||
padding-right: 4px;
|
||||
}
|
||||
|
||||
.tabs input[type=radio] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.tabs input[type=radio] + label {
|
||||
font-weight: lighter;
|
||||
border: 1px solid transparent;
|
||||
border-bottom-color: #CAD5E0;
|
||||
background-color: #f3f3f3;
|
||||
padding: 8px;
|
||||
padding-right: 10px;
|
||||
padding-left: 10px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.tabs input[type=radio]:checked + label {
|
||||
background-color: #ffffff;
|
||||
border-top-right-radius: 8px;
|
||||
border-top-left-radius: 8px;
|
||||
font-weight: bold;
|
||||
border-color: #CAD5E0;
|
||||
border-bottom-color: #FFFFFF;
|
||||
}
|
||||
@ -0,0 +1 @@
|
||||
.main .pane {display:block}
|
||||
@ -0,0 +1,3 @@
|
||||
@media (max-width: 480px) {
|
||||
|
||||
}
|
||||
Loading…
Reference in new issue