33 lines
482 B
SCSS
33 lines
482 B
SCSS
|
body {
|
||
|
font-family: Helvetica, Arial, sans-serif;
|
||
|
background-color: hsl(100, 50%, 90%);
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
max-width: 40rem;
|
||
|
}
|
||
|
|
||
|
.bookmark {
|
||
|
padding: 1ex;
|
||
|
|
||
|
&-title {
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
|
||
|
&-tags {
|
||
|
padding: 0;
|
||
|
margin: 1em 0;
|
||
|
}
|
||
|
|
||
|
&-tag {
|
||
|
display: inline-block;
|
||
|
|
||
|
padding: 0.5ex 0.8ex;
|
||
|
margin: 0 0 0.2ex 0;
|
||
|
|
||
|
border-radius: 7px;
|
||
|
background-color: hsl(230, 50%, 50%);
|
||
|
color: #fff;
|
||
|
}
|
||
|
}
|