-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (50 loc) · 1.03 KB
/
style.css
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
54
55
56
57
@font-face {
font-family: "IBM Plex Sans";
src:
url('font/ibmplexsans-light.woff2') format('woff2'),
url('font/ibmplexsans-light.woff') format('woff');
font-weight: 300;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'IBM Plex Sans';
src:
url('font/ibmplexsans-bold.woff2') format('woff2'),
url('font/ibmplexsans-bold.woff') format('woff');
font-weight: 700;
font-style: normal;
font-display: swap;
}
html {
max-width: 65ch;
margin: 3rem auto;
}
body {
font-family: "IBM Plex Sans", serif;
}
.heading-bg {
background: red;
color: yellow;
padding: 2px 10px;
}
.blink {
animation: blink-animation 1s steps(2, start) infinite;
-webkit-animation: blink-animation 1s steps(2, start) infinite;
}
@keyframes blink-animation {
to {
visibility: hidden;
}
}
@-webkit-keyframes blink-animation {
to {
visibility: hidden;
}
}
@media (prefers-reduced-motion) {
.blink {
animation: none;
visibility: visible
}
}