123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- .App {
- text-align: center;
- }
- .App-logo {
- height: 40vmin;
- pointer-events: none;
- }
- @media (prefers-reduced-motion: no-preference) {
- .App-logo {
- animation: App-logo-spin infinite 20s linear;
- }
- }
- .App-header {
- background-color: #282c34;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- font-size: calc(10px + 2vmin);
- color: white;
- }
- .App-link {
- color: #61dafb;
- }
- @keyframes App-logo-spin {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(360deg);
- }
- }
- .Logo {
- height: 40vmin;
- pointer-events: none;
- }
- header, footer {
- max-height: 100px;
- background-color: black;
- .Logo {
- max-height: 100px;
- }
- }
- nav {
- display: flex;
- background-color: black;
- justify-content: space-evenly;
- .item {
- &:hover {
- background-color: rgba(58, 55, 55, 0.925);
- }
- &:active {
- background-color: rgba(92, 87, 87, 0.925);
- }
- }
- }
- main {
- display: flex;
- aside {
- width: 16%;
- }
- }
- li {
- list-style: none;
- }
- .CatLink {
- padding: 3px;
- margin: 10px 0px;
- border-left: 5px solid rgb(47, 121, 170);
- //border-right: 5px solid rgb(47, 121, 170);
- background-color: whitesmoke;
- &:hover {
- background-color: black;
- a {
- color: white;
- }
- }
- &:active {
- background-color:rgb(47, 121, 170);
- }
- }
- .GoodCard {
- background-color: whitesmoke;
- border: 1px dashed black;
- margin: 5px;
- padding: 5px;
- }
- .GoodImg {
- max-width: 300px;
- height: auto;
- }
- .KoshikCnt {
- border-top: 5px solid rgb(47, 121, 170);
- border-bottom: 5px solid rgb(47, 121, 170);
- color: white;
- padding: 0px 10px;
- }
- .form {
- background-color: whitesmoke;
- text-align: center;
- border: 5px solid rgb(47, 121, 170);
- padding: 5px;
- margin-left: 30px;
- }
- .Content {
- padding: 10px;
- margin: 0 auto;
- }
|