/* ========================= Root Variables ========================= */ :root { --dusty-red: #D43F3F; --dusty-red-hover: #C73636; --dark-yellow: #FFD27F; --pale-yellow: #FFECB3; --peach: #F5A96E; --dark: #850000; } /* ========================= Global Styles ========================= */ .delius { font-family: 'Delius Swash Caps', cursive; font-weight: 400; font-style: normal; } .mali-regular { font-family: 'Mali', cursive; font-weight: 400; font-style: normal; } body, html { height: 100vh; margin: 0; font-family: 'Mali', cursive; background-color: var(--pale-yellow); overflow: clip; } /* ========================= Layout Structure ========================= */ .body { display: flex; flex-direction: row; height: 100%; } .body-left, .body-right { position: sticky; flex-grow: 0; width: 400px; } /* ========================= Header Styles ========================= */ .top-header { display: flex; align-items: center; justify-content: center; gap: 40px; height: 60px; padding: 10px 20px; background-color: var(--dusty-red); color: var(--dark-yellow); } .top-header .swirl { height: 40px; width: auto; margin: 0 20px; } .site-name { font-family: 'Delius Swash Caps', serif; font-size: clamp(1.1em, 5vw, 2.5em); font-weight: bold; letter-spacing: 4px; color: var(--dark-yellow); } /* ========================= Left Sidebar ========================= */ .sidebar-left { overflow: hidden; margin: 25px; border-radius: 20px; z-index: 10; background-color: var(--peach); color: var(--dark); padding: 6px; font-size: 1.8em; font-weight: 900; letter-spacing: 1.5px; display: flex; flex-direction: column; justify-content: space-between; align-items: center; } .sidebar-left ul { list-style: none; padding: 0; } .sidebar-left li { margin-bottom: 7px; } .sidebar-left a { color: var(--dark); text-decoration: none; transition: 0.1s ease; } .sidebar-left a:hover { color: var(--dusty-red); } .sidebar-left .nav_icon { background: none; border: none; padding: 0; cursor: pointer; height: 85px; width: auto; border-radius: 8px; transition: transform 0.2s ease; } .sidebar-left .nav_icon:hover { transform: scale(1.05); } /* ========================= Floating Create Icon ========================= */ .create_icon { position: fixed; bottom: 30px; left: 55px; z-index: 1000; transition: transform 0.2s ease; } .create_icon::after { content: "Create a recipe"; display: block; position: absolute; left: 50%; bottom: 100%; transform: translateX(-50%); background: var(--dark-yellow); color: var(--dusty-red); font-family: 'Mali', cursive; font-size: 0.85em; font-weight: 600; white-space: nowrap; padding: 4px 10px; border-radius: 10px; margin-bottom: 6px; } .create_icon:hover { transform: scale(1.02); } .create_icon img { width: 150px; height: auto; border-radius: 10%; } /* ========================= Right Sidebar ========================= */ .sidebar-right { display: flex; flex-direction: column; justify-content: flex-start; align-items: center; margin: 25px; padding: 5px; height: 75%; border-radius: 20px; z-index: 10; background-color: var(--peach); color: var(--dusty-red); font-size: 1.6em; font-weight: 900; letter-spacing: 1.5px; overflow: scroll; scrollbar-width: none; } .sidebar-right h1 { margin-bottom: 10px; } .new-recipes { display: flex; flex-direction: column; gap: 10px; width: 100%; padding: 0 8px; } .new-recipe-item { display: flex; flex-direction: column; align-items: center; gap: 6px; background: var(--dark-yellow); color: var(--dusty-red); border-radius: 10px; padding: 6px; width: 95%; box-sizing: border-box; margin: 5px; } .new-recipe-item:hover { background: var(--pale-yellow); } .new-recipe-item p { margin: 1px; font-size: 0.65em; font-weight: 700; text-align: center; } .new-recipe-item img { width: 100%; height: 75px; object-fit: cover; border-radius: 6px; } /* ========================= Main Content Area ========================= */ .main-content { width: 100%; flex-grow: 1; display: flex; justify-content: center; align-items: flex-start; overflow: scroll; scrollbar-color: var(--dusty-red) transparent; height: 100%; } /* safari and old browsers*/ ::-webkit-scrollbar-track { background: var(--pale-yellow); } ::-webkit-scrollbar-thumb { background: var(--dusty-red); } /* ========================= Recipe Cards Layout ========================= */ .recipe-card { margin-top: 35px; width: 99%; display: flex; flex-wrap: wrap; gap: 35px; justify-content: flex-start; flex-direction: row; height: fit-content; } a { text-decoration: none; color: var(--dark); } /* ========================= Individual Card (Folder Style) ========================= */ .card { position: relative; /* needed for tab */ display: flex; align-items: center; gap: 10px; flex: 1 1 260px; max-width: 400px; max-height: 200px; padding: 25px 20px 20px; /* extra space for tab */ border-radius: 12px; background: var(--peach); } /* Folder Tab */ .card::before { content: ""; position: absolute; top: -16px; left: 0px; width: 100px; height: 28px; background: var(--peach); border-radius: 6px 6px 0 0; } /* ========================= Card Content ========================= */ .card .card-text { height: 100%; overflow: hidden; /* the scroll bars were difficult to look at, the user can just view the recipe*/ color: var(--dark); transition: 0.1s ease; } .card .card-text:hover{ color: var(--dusty-red-hover); } .card-cost { font-weight: 800; color: var(--dusty-red); } /* ========================= Card Image ========================= */ .card img { width: 100%; height: 100px; object-fit: cover; border-radius: 8px; } /* ========================= Card Columns ========================= */ .card-left, .card-right { flex-shrink: 0; width: 50%; }