Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
7 changes: 7 additions & 0 deletions FrontEndWebsite/Card Website Project 3/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Card Website Project 3

Tiny website with Boostrap cards.
Feel free to use it as a base for your one page projects

## Link to the demo
https://pixeliz-corporation.fr/demos/onepage/card-websiteproject-3/
Binary file not shown.
54 changes: 54 additions & 0 deletions FrontEndWebsite/Card Website Project 3/assets/css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/* Card Website Project 1 */

:root {
--linkColor: #212529;
--linkColorHover: var(--color1);
--shadow: #7a4b6f;
--color1: rgb(148, 89, 57);
--color2: rgb(185, 117, 206);
--color3: rgb(152, 106, 67)
}

/* Global */

body {
background: linear-gradient(45deg, var(--color1) , var(--color2), var(--color3));
font-family: 'Roboto', sans-serif;
}

a {
color: var(--linkColor);
}

a:hover {
color: var(--linkColorHover);
}

/* Card */

.card-container {
display: flex;
justify-content: center;
height: 100vh;
border: 20px solid #000;
}

.card-img, .card-img-bottom {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}

.card-container .card {
align-self: center;
box-shadow: 0px 0px 30px var(--shadow);
border-radius: 0;
max-width: 70%;
}

.card-container .list-group-item i {
margin-right: 0.3em;
}

.card-container .card-link i {
font-size: 1.1em;
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
2,105 changes: 2,105 additions & 0 deletions FrontEndWebsite/Card Website Project 3/assets/icofont/fonts/icofont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions FrontEndWebsite/Card Website Project 3/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Card Website Project 1</title>

<!-- Bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">

<!-- Google Font -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,400&display=swap" rel="stylesheet">

<!-- Icofont -->
<link rel="stylesheet" href="assets/icofont/icofont.min.css">

<!-- Main CSS -->
<link rel="stylesheet" href="assets/css/main.css">
</head>
<body>

<div class="card-container">

<div class="card mb-3">
<div class="row no-gutters">
<div class="col-lg-6 col-md-12">
<img src="img/chester-wade-msnyz9L6gs4-unsplash.jpg" class="card-img" alt="...">
</div>
<div class="col-lg-6 col-md-12">
<div class="card-body">
<h1>Cédric Durand</h1>
<h5 class="card-title">UI & UX Designer</h5>
<p class="card-text">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Cumque, cupiditate? Eaque repellendus recusandae nobis placeat aut aspernatur. Debitis non fuga cupiditate beatae t fugiat?</p>
<a href="#" class="card-link"><i class="icofont-facebook-messenger"></i></a>
<a href="#" class="card-link"><i class="icofont-github"></i></a>
<a href="#" class="card-link"><i class="icofont-dribble"></i></a>
<a href="#" class="card-link"><i class="icofont-behance"></i></a>
<a href="#" class="card-link"><i class="icofont-instagram"></i></a>

</div>
</div>
</div>
</div>

</div>
</body>
</html>
10 changes: 10 additions & 0 deletions FrontEndWebsite/Card Website Project 4/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Card Website Project 4

Tiny website with Boostrap cards.
Feel free to use it as a base for your one page projects

## Link to the demo
https://pixeliz-corporation.fr/demos/onepage/card-websiteproject-4/

## Real demo website
Check my personal website made with this template : https://coustellie.com
60 changes: 60 additions & 0 deletions FrontEndWebsite/Card Website Project 4/assets/css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
/* Card Website Project 4 */

:root {
--linkColor: #28a745;
--linkColorHover: var(--color1);
--shadow: var(--linkColor);
--bgColor:#f0f9f2;
--color1: rgb(148, 89, 57);
--color2: rgb(185, 117, 206);
--color3: rgb(152, 106, 67)
}

/* Global */

body {
/* If you want to use a linear gradient */
/* background: linear-gradient(45deg, var(--color1) , var(--color2), var(--color3)); */
background: var(--bgColor);
font-family: 'Roboto', sans-serif;
}

a {
color: var(--linkColor);
}

a:hover {
color: var(--bgColor);
}

/* Card */

.card-img, .card-img-top {
border-top-left-radius: 0;
border-top-right-radius: 0;
}

.card-header {
padding: 0;
}

.card-container {
display: flex;
justify-content: center;
height: 100vh;
}

.card-container .card {
align-self: center;
border-radius: 0;
width: 20em;
box-shadow: 15px 15px 0px var(--shadow);
}

.card-container .card-title {
margin-bottom: 0;
}

.card-container .card-link i {
font-size: 1.1em;
}
Binary file not shown.
Loading