Skip to content

Commit d18785a

Browse files
committed
Modified buttons
1 parent 26cdff6 commit d18785a

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

foundations/03-grouping-selectors/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<link rel="stylesheet" href="style.css">
99
</head>
1010
<body>
11-
<button>Click Me!</button>
12-
<button>No, Click Me!</button>
11+
<button class="btn1">Click Me!</button>
12+
<button class="btn2">No, Click Me!</button>
1313
</body>
1414
</html>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.btn1,.btn2{
2+
font-size: 28px;
3+
font-family: 'Helvetica','Times New Roman', sans-serif;
4+
}
5+
6+
.btn1{
7+
background-color: black;
8+
color: white;
9+
}
10+
11+
.btn2{
12+
background-color: yellow;
13+
color: black;
14+
}

0 commit comments

Comments
 (0)