smurf
smurf
KPCKevin Powell - Community
Created by smurf on 2/1/2024 in #front-end
Animation on Navigation Bar
Thanks i’ll try this but it looks very complicated for my level. I’ll give it a try
11 replies
KPCKevin Powell - Community
Created by smurf on 2/1/2024 in #front-end
Animation on Navigation Bar
How would i be able to make a diagonal div connected with the other div so it follow the same line ?
11 replies
KPCKevin Powell - Community
Created by smurf on 2/1/2024 in #front-end
Animation on Navigation Bar
Yes thats my issues
11 replies
KPCKevin Powell - Community
Created by smurf on 2/1/2024 in #front-end
Animation on Navigation Bar
No description
11 replies
KPCKevin Powell - Community
Created by smurf on 2/1/2024 in #front-end
Animation on Navigation Bar
/* Palette de couleurs: https://coolors.co/ */
$hard-black: #191b1c;
$soft-black: #313638;
$silver: #B5B5AE;
$soft-silver: #E0DFD5;
$soft-white: #E8E9EB;

/* Fonts importés */
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');

.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}

body {
background-color: $hard-black;
margin: 0;
padding: 0;
}

header {
img {
margin-left: 8rem;
width: 20rem;
margin-top: 2rem;
}

ul {
list-style: none;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-right: 8rem;
}

a {
color: $soft-white;
text-decoration: none;
}

li:not(:first-child) {
margin-left: 3rem;
}

display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin: 0;
font-size: 1.4rem;
font-family: "Black Ops One", system-ui;
}
/* Palette de couleurs: https://coolors.co/ */
$hard-black: #191b1c;
$soft-black: #313638;
$silver: #B5B5AE;
$soft-silver: #E0DFD5;
$soft-white: #E8E9EB;

/* Fonts importés */
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');

.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}

body {
background-color: $hard-black;
margin: 0;
padding: 0;
}

header {
img {
margin-left: 8rem;
width: 20rem;
margin-top: 2rem;
}

ul {
list-style: none;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-right: 8rem;
}

a {
color: $soft-white;
text-decoration: none;
}

li:not(:first-child) {
margin-left: 3rem;
}

display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin: 0;
font-size: 1.4rem;
font-family: "Black Ops One", system-ui;
}
11 replies