edgarluque.com/sass/style.scss
2024-02-15 10:30:47 +01:00

241 lines
3.1 KiB
SCSS

$color: #E6E1CF;
$bgcolor: #14191F;
$code: #7abec2;
$accent: #4d7577;
$codeblock: #0f1419;
/*
1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
font-variant-ligatures: none;
box-sizing: border-box;
font-size: 16px;
@media screen and (max-width: 500px) {
font-size: 12px;
}
@media screen and (max-width: 800px) {
font-size: 14px;
}
}
/*
2. Remove default margin
*/
* {
margin: 0;
}
/*
3. Allow percentage-based heights in the application
*/
html,
body {
height: 100%;
font-family: Verdana, sans-serif;
background-color: $bgcolor;
color: $color;
}
/*
Typographic tweaks!
4. Add accessible line-height
5. Improve text rendering
*/
body {
line-height: 1.5;
-webkit-font-smoothing: antialiased;
}
/*
6. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
display: block;
max-width: 100%;
}
/*
7. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
font: inherit;
}
/*
8. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}
/*
9. Create a root stacking context
*/
#root,
#__next {
isolation: isolate;
}
$breakpoint: 900px;
.title {
font-size: 2em;
text-align: center;
}
h1 {
font-size: 1.6em;
}
h2 {
font-size: 1.4em;
}
h3 {
font-size: 1.2em;
}
p {
margin: 1em 0;
}
a {
color: $color;
text-underline-offset: 4px;
}
pre {
padding: 10px;
overflow-x: auto;
border-radius: 4px;
margin: 1em 0;
font-family: "JetBrains Mono", "Courier New", monospace;
code {
background-color: inherit;
color: inherit;
border: 0;
}
}
code {
font-family: "JetBrains Mono", "Courier New", monospace;
padding: 2px;
line-height: 1.8;
font-weight: bold;
color: $code;
}
blockquote {
background-color: $codeblock;
border-left: 4px $accent solid;
padding: 0.02em 10px;
margin: 6px 0px;
}
.container {
margin: 10px auto;
margin-top: 0;
padding-top: 10px;
max-width: $breakpoint;
@media screen and (max-width: $breakpoint) {
max-width: 100%;
margin: 10px 10px;
}
}
ul.nav {
text-align: right;
text-transform: uppercase;
li {
display: inline;
padding: 0 5px;
}
}
ul.posts {
list-style-type: none;
padding: 0;
margin: 0;
margin-top: 5px;
}
ul.categories {
columns: 4;
@media screen and (max-width: 600px) {
columns: 2;
}
}
a.title {
text-decoration: none;
}
.brand-title {
font-size: 1.4rem;
text-transform: uppercase;
font-weight: bolder;
text-align: right;
margin: 0;
}
.blog-date {
text-align: right;
}
.capitalize {
text-transform: capitalize;
}
.category-link {
color: $color;
}
ul {
margin-top: 10px;
margin-bottom: 10px;
}
h1,h2 {
border-bottom: 2px $color solid;
border-bottom-color: $accent;
margin-bottom: 1rem;
}
table {
width: 100%;
margin: 1em 0px;
border-collapse: collapse;
}
table, th, td {
border: 1px solid;
}
th {
background-color: #2c2c2c;
color: white;
}
th, td {
padding: 10px;
text-align: left;
}
tr:nth-child(even) {background-color: #1b2127;}
.footer {
border-top: 2px $accent solid
}