Finnish Candy, Coffee & Food
A collection page of FinnStyle
About
If you love Finnish candy, coffee, tea and more, then you've come to the right place. Our selection of Finnish candy includes premium Fazer chocolate bars, crisp peppermints and decadent Dumles that will satisfy the sweet tooth of any candy snob. Treat your guests to these tasty treats: Finnish chocolate, licorice, mints, toffee, crackers, and coffee. /* ------------------------------------------------------------- CUSTOMIZATION PANEL Change the values below to completely alter the table look. ------------------------------------------------------------- */ :root { /* Sizing & Responsiveness */ --table-max-width: 600px; /* Maximum width allowed */ --table-min-width: 280px; /* Minimum width on small screens */ /* Table Alignment (Options: flex-start [left], center, flex-end [right]) */ --table-alignment: flex-start [left]; /* Spacing & Padding */ --cell-padding: 10px; /* Space inside the cell around text */ --cell-spacing: 0px; /* Space outside the cell (requires border-collapse: separate) */ --border-collapse: collapse; /* 'collapse' for clean borders, 'separate' to allow cell-spacing */ /* Borders & Backgrounds */ --border-width: 1px; --border-style: solid; --border-color: #979899; --cell-bg-color: #ededed; --border-radius: 8px; /* Rounded corners (works best when border-collapse is 'separate') */ /* Typography */ --text-color: #2d3748; --text-alignment: left; /* left, center, right, justify */ --font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; --font-size: 14px; --line-height: 1.6; } /* ------------------------------------------------------------- TABLE STYLES (Driven by the variables above) ------------------------------------------------------------- */ /* Container handles outer alignment and prevents overflow */ .table-container { width: 100%; display: flex; justify-content: var(--table-alignment); box-sizing: border-box; padding: 10px; } /* The Table Element */ .responsive-table { width: 100%; max-width: var(--table-m