bravo68web-portfolio-nextjs/components/main.style.jsx

63 lines
1.1 KiB
JavaScript

import styled from "styled-components";
export default styled.main`
padding-top: 15px;
display: flex;
height: 100vh;
width: 100%;
justify-content: center;
align-items: center;
background-image: url("/images/background.jpg");
background-size: cover;
background-position: center;
.backimage {
filter: blur(8px);
-webkit-filter: blur(8px);
}
.content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
.social-buttons {
button {
margin: 5px;
}
.MuiSvgIcon-root {
color: white;
}
}
.buttons {
button {
background: var(--color1);
border-radius: 20px;
padding: 10px 15px;
margin: 10px;
}
}
}
.profile {
height: 250px;
width: 250px;
img {
max-height: 100%;
max-width: 100%;
}
margin-bottom: 20px;
}
.name {
font-size: 1.5rem;
font-weight: 600;
}
.social-buttons {
background: rgb(64, 63, 79);
background: linear-gradient(
90deg,
rgba(64, 63, 79, 1) 0%,
rgba(92, 84, 90, 1) 43%
);
border-radius: 12px;
}
`;