Skip to content

Commit 6bd500b

Browse files
authored
Merge pull request #2 from JoelMbuyi05/improve-design
Improve design
2 parents ca4c549 + d4e3c85 commit 6bd500b

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link rel="preconnect" href="https://fonts.googleapis.com">
7+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
8+
<link href="https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,[email protected],200..800&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
69
<title>Placement Resources</title>
710
<link href="styles/style.css" rel="stylesheet">
811
</head>

styles/style.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
html,body{
22
margin:0;
33
padding: 0;
4-
font-family: Arial, sans-serif;
4+
font-family: 'Roboto', sans-serif;
55
background-color: #FAFAFA;
66
color:#023047;
77
}
@@ -25,6 +25,10 @@ html,body{
2525
padding:10px;
2626
border-radius: 8px;
2727
box-shadow:0 4px 8px rgba(0,0,0,0.1);
28+
transition: all 0.3s ease;
29+
}
30+
.card:hover{
31+
transform: scale(1.03);
2832
}
2933
.card a {
3034

0 commit comments

Comments
 (0)