Files
teknolojirehberleri.xyz/styles/base/_typography.scss
T
2021-08-13 16:24:25 +03:00

45 lines
565 B
SCSS

h1,
h2,
h3,
h4 {
color: var(--color-primary);
}
h1 {
font-weight: 500;
font-size: 3rem;
text-align: center;
}
h2 {
font-size: 2.4rem;
font-weight: normal;
}
p,
li {
color: var(--color-primary);
font-size: 2rem;
}
a {
color: var(--color-grey-light-1);
text-decoration: none;
display: inline-block;
&::after {
content: "";
display: block;
width: 0;
height: 2px;
background: var(--color-tertiary);
transition: all 0.5s;
}
&:hover::after {
width: 100%;
}
&:hover {
color: var(--color-primary);
}
}