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

35 lines
649 B
React
Raw Normal View History

import styled from "styled-components";
export default styled.div`
2022-04-02 19:52:51 +00:00
padding: 2%;
width: 230px;
height: 320px;
box-sizing: border-box;
2022-04-18 20:01:24 +00:00
background-color: #5f046b;
2022-04-02 19:52:51 +00:00
border-radius: 5px;
2022-04-18 21:11:40 +00:00
box-shadow: 10px 9px 0px -3px #fffefe;
2022-04-02 19:52:51 +00:00
margin: 5px;
2022-08-19 18:03:24 +00:00
* {
margin-top: inherit;
}
2022-04-13 20:37:06 +00:00
.type {
2022-08-19 18:03:24 +00:00
color: #92dcf3;
/* padding: 4px; */
2022-04-13 20:37:06 +00:00
}
2022-04-03 15:19:59 +00:00
.card-logo {
display: flex;
/* width: 100%; */
justify-content: center;
align-items: center;
background-color: #fff;
border-radius: 10px;
img {
width: 100%;
object-fit: cover;
/* object-position: 0px -10px; */
}
/* margin: 5px 5px 0px 0px; */
}
`;