-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathminima.scss
53 lines (45 loc) · 1.05 KB
/
minima.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*!
* Customized Minima Theme Styles
* =======================================================
* NOTE: This stylesheet has been modified to fit the specific design needs of our website.
* We are not using the default Minima styles provided by the theme.
* It's important to be cautious when updating the theme to ensure these customizations are preserved.
* =======================================================
*/
@font-face {
font-family: 'FixelText-Regular';
src: url(/assets/fonts/FixelText-Regular.woff2);
font-weight: normal;
font-display: swap;
}
$brand-color: black;
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
margin: 0;
padding: 0;
}
img {
max-width: 100%;
vertical-align: middle;
}
li {
> ul,
> ol {
margin-bottom: 0;
}
}
h1, h2, h3, h4, h5, h6 {
font-family: 'FixelText-Regular', serif;
font-weight: 400;
font-size: 16px;
}
a {
color: $brand-color;
text-decoration: none;
&:hover {
color: $brand-color;
text-decoration: none;
}
&:visited { color: $brand-color; }
}