Create some real styles
This commit is contained in:
parent
9d3fb270f6
commit
f8f721ffac
@ -1,22 +1,88 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Helvetica, Arial, sans-serif;
|
||||
background-color: hsl(100, 50%, 90%);
|
||||
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 {
|
||||
padding: 1ex;
|
||||
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-top: 0;
|
||||
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 {
|
||||
padding: 0;
|
||||
margin: 1em 0;
|
||||
font-size: 0.8em;
|
||||
grid-area: tags;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
&-tag {
|
||||
@ -26,7 +92,7 @@ body {
|
||||
margin: 0 0 0.2ex 0;
|
||||
|
||||
border-radius: 7px;
|
||||
background-color: hsl(230, 50%, 50%);
|
||||
color: #fff;
|
||||
background-color: #9E2A2B;
|
||||
color: #FFF3B0;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user