Skip to content

Commit c116d67

Browse files
committed
Fixing bubbles
1 parent 960c659 commit c116d67

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

assets/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ <h2>Contact</h2>
7878
<footer>
7979
<p>© 2024 Joseph Lavoie</p>
8080
</footer>
81+
<script src="https://cdnjs.cloudflare.com/ajax/libs/matter-js/0.19.0/matter.min.js"></script>
82+
<script src="https://unpkg.com/matter-wrap"></script>
8183
<script src="script.js"></script>
8284
<canvas id="bg"></canvas>
8385
</body>

assets/styles.css

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ h1, h2 {
7171
/* Gallery */
7272
.gallery {
7373
display: grid;
74-
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
74+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
7575
gap: 20px;
7676
}
7777

@@ -97,18 +97,16 @@ footer {
9797
}
9898

9999
.contact p a img {
100-
width: 20px;
101-
height: 20px;
102-
margin-right: 4px;
103-
vertical-align: middle;
100+
width: 25px;
101+
height: 25px;
102+
margin-right: 8px;
104103
}
105104

106105
.contact p a {
107-
color: rgb(167, 150, 0);
106+
color: #d8cf4e;
108107
}
109-
110108
.contact p a:visited {
111-
color: rgb(128, 58, 0);
109+
color: #dfa843;
112110
}
113111

114112
/* Buttons and Links */

0 commit comments

Comments
 (0)