99a943eb36
pipeline / build-and-push-images (push) Successful in 3m12s
NuxtJS, Vue, real web app Nuxt content: blog Better mobile/responsive design and practices Better practices overall
40 lines
548 B
CSS
40 lines
548 B
CSS
h1, h2, h3, h4, h5, h6, p, a, input[type=text], ul, li, strong {
|
|
font-family: 'Inter', sans-serif;
|
|
font-style: normal;
|
|
}
|
|
h1 {
|
|
font-weight: 600;
|
|
}
|
|
h2 {
|
|
font-weight: 500;
|
|
}
|
|
h3 {
|
|
font-weight: 400;
|
|
}
|
|
h4 {
|
|
font-weight: 300;
|
|
}
|
|
p {
|
|
font-weight: normal;
|
|
}
|
|
strong {
|
|
font-weight: 600;
|
|
}
|
|
|
|
a:link {
|
|
text-decoration: none;
|
|
color: grey;
|
|
}
|
|
a:visited {
|
|
text-decoration: none;
|
|
color: grey;
|
|
}
|
|
a:hover {
|
|
text-decoration: none;
|
|
color: #536878;
|
|
}
|
|
a:active {
|
|
text-decoration: none;
|
|
color: grey;
|
|
}
|