Added COMPLETE.md, edited index.html and styles.cs
s according to README.md
This commit is contained in:
parent
4d229c643a
commit
38463444a9
1
foundations/03-grouping-selectors/COMPLETED.md
Normal file
1
foundations/03-grouping-selectors/COMPLETED.md
Normal file
@ -0,0 +1 @@
|
||||
# Complete
|
||||
@ -8,7 +8,7 @@
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<button>Click Me!</button>
|
||||
<button>No, Click Me!</button>
|
||||
<button class="first">Click Me!</button>
|
||||
<button class="second">No, Click Me!</button>
|
||||
</body>
|
||||
</html>
|
||||
@ -0,0 +1,15 @@
|
||||
.first,
|
||||
.second {
|
||||
font-family: Helvetica, 'Times New Roman', sans-serif;
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
.first {
|
||||
background-color: black;
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.second {
|
||||
background-color: yellow;
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user