Files
Figma_itproger/style.css
2026-01-06 15:05:11 +03:00

66 lines
1.2 KiB
CSS

/*------------------------------ base options------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;800&display=swap');
body {
font-family: "Poppins", sans-serif;
font-weight: 400;
color: white;
}
img {
max-width: 100%;
}
.wrapper {
background: linear-gradient(180deg,rgba(0, 0, 0, 1) 0%, rgba(74, 40, 0, 1) 100%);
width: 100%;
}
/* --------------------------------HEADER----------------------------- */
.container {
width: 700px;
margin: 0 auto;
}
header {
padding: 50px 0;
}
.logo {
text-transform: uppercase;
font-weight: 800;
font-size: 29px;
}
nav {
float: right;
width: 50%;
}
ul {
display: flex;
justify-content: space-between;
}
li {
display: inline-block;
}
a {
color: #fff;
}
header nav ul li:not(.active):not(.btn) a:hover {
border-bottom: 5px solid #DC7000;
}
.active {
}
.btn a{
background: #FA9021;
padding: 9px 17px;
border-radius: 5px;
transition: all 500ms ease;
}
.btn a:hover {
background: #a02604;
}
/* --------------------------------HERO----------------------------------- */
.hero {
}
.hero_info {
}