yeet.marigold.town/css/style.css

97 lines
1.6 KiB
CSS
Raw Permalink Normal View History

2023-09-24 18:37:22 +00:00
/* toy-shelf {
width: 400px;
height: 150px;
display: inline-block;
background-color: chartreuse;
} */
2023-10-01 00:06:22 +00:00
@import url(https://fonts.bunny.net/css?family=georama:400|bangers:400);
2023-09-24 18:37:22 +00:00
body {
background: url(../images/d7YslGq.gif);
line-height: 1.6;
font-size: 16px;
2023-09-27 04:21:18 +00:00
margin: 0;
padding: 0;
2023-10-01 00:06:22 +00:00
font-family: 'Georama', sans-serif;
2023-09-24 18:37:22 +00:00
}
header {
2023-10-01 00:06:22 +00:00
text-align: center;
color: white;
font-family: 'Bangers', display;
2023-09-24 18:37:22 +00:00
}
h1,h2,h3 {
line-height: 1.2;
2023-10-01 00:06:22 +00:00
font-family: 'Bangers', display;
2023-09-24 18:37:22 +00:00
}
.container {
width: 85%;
2023-10-01 00:06:22 +00:00
min-height: 100vh;
2023-09-24 18:37:22 +00:00
padding: 20px 50px;
margin: 0 auto;
}
.content {
display: flex;
flex-flow: row wrap-reverse;
2023-10-01 00:06:22 +00:00
align-items: center;
background-color: white;
padding: 20px 50px;
2023-09-24 18:37:22 +00:00
}
.sidebar {
flex: 3 1 20%;
border: 1px solid black;
2023-10-01 00:06:22 +00:00
padding: 20px 30px;
margin-left: 10px;
2023-09-24 18:37:22 +00:00
}
.storefront {
flex: 1 3 fit-content;
margin: 0 auto;
2023-10-01 00:06:22 +00:00
min-height: 720px;
padding: 30px;
2023-09-24 18:37:22 +00:00
}
.shelf-group {
display: inline-block;
padding: 0 20px;
}
shop-counter {
position: relative;
z-index: 2;
}
2023-09-30 21:53:08 +00:00
toy-shelf ul {
position: absolute;
z-index: 3;
margin: 0;
padding: 0;
list-style-type: none;
vertical-align: bottom;
}
toy-shelf li {
display: inline-block;
width: 70px;
height: 70px;
margin: 5px 8px;
padding: 5px;
background-color: black;
color: red;
font-size: 10px;
vertical-align: bottom;
position: relative;
top: 5px;
left: 2px;
text-align: center;
}
2023-10-01 00:06:22 +00:00
footer {
text-align: center;
color: white;
}