Skip to content

Commit 33d2acc

Browse files
committed
CSS: style basic element-selectors
1 parent 27c30af commit 33d2acc

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

02-css/style.css

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
* {
2+
margin: 0;
3+
padding: 0;
4+
box-sizing: border-box;
5+
}
6+
7+
html {
8+
font-family: 'Space Grotesk', sans-serif;
9+
}
10+
11+
h1 {
12+
font-size: 48px;
13+
color: #e9f45b;
14+
}
15+
16+
h2 {
17+
font-size: 40px;
18+
}
19+
20+
p {
21+
margin-bottom: 24px;
22+
}
23+
24+
a {
25+
color: #c917c0
26+
}

0 commit comments

Comments
 (0)