123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- #mainContainer {
- display: flex;
- text-align: center;
- background-color: rgb(236, 235, 233);
- }
- #aside {
- display: flex;
- flex-direction: column;
- background-color: #8d9de7;
- padding: 20px;
- width: 20%;
- height: 100vh;
- font-size: 24px;
- font-family: 'Courier New', Courier, monospace;
- border: 2px solid black;
- margin-right: 20px;
- }
- #aside a {
- color: rgb(53, 115, 185);
- margin: 15px 0;
- transition: all 0.5s;
- color: rgb(73, 80, 165);
- }
- #aside a:hover {
- border: 1px solid black;
- text-align: center;
- color: #454747;
- background-color: rgb(230, 231, 209);
- }
- #main {
- display: flex;
- flex-wrap: wrap;
- flex-direction: row;
- width: 100%;
- height: 100%;
- }
- #main section {
- display: flex;
- flex-wrap: wrap;
- flex-direction: row;
- }
- #main div {
- width: 70%;
- height: 80%;
- border: 2px solid rgb(110, 108, 108);
- border-radius: 20px;
- margin-bottom: 20px;
- margin-left: 20px;
- text-align: center;
- padding: 20px;
- margin-top: 80px;
- background-color: rgb(199, 197, 194);
- cursor: pointer;
- }
- #main div:hover {
- background-color: rgb(215, 216, 213);
- }
- #main a {
- width: 50%;
- font-size: 25px;
- text-decoration: none;
- font-family: 'Courier New', Courier, monospace;
- margin-top: 20px;
- margin-bottom: 20px;
- color: black;
- }
- #main p {
- padding-left: 25px;
- padding-right: 25px;
- font-family: 'Courier New', Courier, monospace;
- }
- #main h5 {
- font-size: 25px;
- color: rgb(86, 93, 189);
- }
- #main span {
- border: 2px solid rgb(110, 108, 108);
- border-radius: 20px;
- padding: 20px;
- margin-top: 20px;
- background-color: white;
- }
- #main img {
- margin-top: 20px;
- background-color: white;
- border-radius: 20px;
- width: 350px;
- }
- #main button {
- cursor: pointer;
- margin-left: 5px;
- margin-right: 5px;
- background-color: #4c66af;
- border: none;
- color: white;
- padding: 7px 14px;
- text-align: center;
- text-decoration: none;
- display: inline-block;
- font-size: 16px;
- }
- #main button:hover {
- background-color: #8ca4e2;
- }
- #cart {
- position: relative;
- color: #000;
- margin-right: 20px;
- }
- #cart span {
- position: absolute;
- top: 0;
- right: -5px;
- border: 1px solid #000;
- background-color: #fff;
- border-radius: 10px;
- padding: 0 5px;
- font-size: 14px;
- text-align: center;
- }
- #thecart {
- display: flex;
- align-items: center;
- position: absolute;
- right: 10px;
- justify-content: end;
- border: 3px solid rgb(77, 86, 170);
- border-radius: 10px;
- background-color: rgb(186, 186, 224);
- padding: 5px;
- }
- #thecart a {
- color: rgb(86, 93, 189);
- font-size: 18px;
- margin: 0 5px;
- transition: all 0.3s;
- }
- #thecart a:hover {
- color: rgb(65, 69, 141);
- }
- #thecart button:hover {
- box-shadow: none;
- color: rgb(160, 162, 204);
- }
- #thecart span {
- font-weight: 600;
- text-transform: uppercase;
- }
- #thecart p {
- color: rgb(86, 93, 189);
- padding-right: 10px;
- text-transform: uppercase;
- }
- div h3{
- color: rgb(86, 93, 189);
- font-family: 'Courier New', Courier, monospace;
- font-size: 22px;
- }
- #password {
- margin-left: 16px;
- margin-right: 5px;
- }
|