Skip to content

Commit 53a6968

Browse files
committed
Added Google fonts and favicon.
1 parent 314511e commit 53a6968

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

build/css/style.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

favicon.ico

1.12 KB
Binary file not shown.

index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
<title>Gulp Task</title>
77
<meta name="description" content="Gulp JS setup for minifying and bundling JS and SCSS files">
88
<meta name="viewport" content="width=device-width, initial-scale=1">
9+
<link rel="shortcut icon" href="favicon.ico" />
910
<link rel="stylesheet" href="build/css/style.min.css">
11+
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700">
1012
</head>
1113
<body>
1214
<header>

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "soft-grand",
2+
"name": "gulp-task",
33
"version": "1.0.0",
44
"description": "",
55
"main": "gulp-config.js",
@@ -8,14 +8,14 @@
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "git+https://gitlab.com/sivadass/soft-grand.git"
11+
"url": "https://github.com/sivadass/gulp-task.git"
1212
},
1313
"author": "Sivadass N",
14-
"license": "ISC",
14+
"license": "MIT",
1515
"bugs": {
16-
"url": "https://gitlab.com/sivadass/soft-grand/issues"
16+
"url": "https://github.com/sivadass/gulp-task/issues"
1717
},
18-
"homepage": "https://gitlab.com/sivadass/soft-grand#README",
18+
"homepage": "https://github.com/sivadass/gulp-task",
1919
"dependencies": {
2020
"gulp": "^3.9.1",
2121
"gulp-concat": "^2.6.1",

sass/base/_reset.scss

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
body{
77
margin: 0;
88
padding: 0;
9-
font-family: "Roboto", Arial, sans-serif;
9+
font-family: "Open Sans", Arial, sans-serif;
1010
-webkit-font-smoothing: antialiased;
1111
-moz-font-smoothing: antialiased;
1212
-moz-osx-font-smoothing: grayscale;
@@ -21,7 +21,7 @@ h3,
2121
h4,
2222
h5,
2323
h6{
24-
font-weight: 700;
24+
font-weight: 300;
2525
margin: 0;
2626
padding: 0;
2727
line-height: 1.5;
@@ -30,6 +30,9 @@ p{
3030
margin-bottom: 24px;
3131
line-height: 24px;
3232
}
33+
strong{
34+
font-weight: 700;
35+
}
3336
input,
3437
button{
3538
font-family: inherit;

0 commit comments

Comments
 (0)