Skip to content
This repository was archived by the owner on Jul 6, 2024. It is now read-only.

Commit

Permalink
feat: sans-serif font
Browse files Browse the repository at this point in the history
  • Loading branch information
mhaidarhanif committed Apr 2, 2024
1 parent 983520e commit 6069c9a
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#0d5572",
"activityBar.background": "#0d5572",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#39072b",
"activityBarBadge.foreground": "#e7e7e7",
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#0d5572",
"statusBar.background": "#083344",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#0d5572",
"statusBarItem.remoteBackground": "#083344",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#083344",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#08334499",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.color": "#083344"
}
1 change: 1 addition & 0 deletions contact/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Details</title>
<link rel="stylesheet" href="/index.css" />
</head>
<body>
<h1>Contact Details</h1>
Expand Down
3 changes: 3 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
body {
font-family: sans-serif;
}
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Address Book</title>
<link rel="stylesheet" href="/index.css" />
</head>
<body>
<h1>Address Book</h1>
Expand Down

0 comments on commit 6069c9a

Please sign in to comment.