99 lines
1.5 KiB
SCSS
99 lines
1.5 KiB
SCSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
|
|
background-color: #335C67;
|
|
}
|
|
|
|
h1 {
|
|
color: #FFF3B0;
|
|
text-align: center;
|
|
}
|
|
|
|
.container {
|
|
max-width: 40rem;
|
|
margin: 1em auto;
|
|
}
|
|
|
|
.bookmark {
|
|
display: grid;
|
|
align-items: center;
|
|
gap: 0px 0px;
|
|
grid-template-areas:
|
|
"title title"
|
|
"href href"
|
|
"description description"
|
|
"date tags";
|
|
|
|
margin-bottom: 1em;
|
|
padding: 0;
|
|
border: 2px solid #540B0E;
|
|
background-color: #FFF3B0;
|
|
|
|
&-title {
|
|
margin: 0;
|
|
padding: 1ex;
|
|
background-color: #E09F3E;
|
|
grid-area: title;
|
|
font-weight: bold;
|
|
}
|
|
|
|
&-href,
|
|
&-description,
|
|
&-date,
|
|
&-tags {
|
|
padding: 1ex;
|
|
margin: 0;
|
|
}
|
|
|
|
&-href,
|
|
&-description,
|
|
&-date {
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
&-href {
|
|
grid-area: href;
|
|
}
|
|
|
|
&-description {
|
|
grid-area: description;
|
|
|
|
> p {
|
|
border-left: 3px solid #9E2A2B;
|
|
margin: 0;
|
|
padding: 0.5ex 0 0.5ex 1ex;
|
|
}
|
|
}
|
|
|
|
&-date {
|
|
grid-area: date;
|
|
}
|
|
|
|
&-tags {
|
|
font-size: 0.8em;
|
|
grid-area: tags;
|
|
text-align: right;
|
|
}
|
|
|
|
&-tag {
|
|
display: inline-block;
|
|
|
|
padding: 0.5ex 0.8ex;
|
|
margin: 0 0 0.2ex 0;
|
|
|
|
border-radius: 7px;
|
|
background-color: #9E2A2B;
|
|
color: #FFF3B0;
|
|
}
|
|
}
|