Skip to content

Commit

Permalink
Updated front-page & Github url
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal Hesselink committed Jun 29, 2019
1 parent e828b1e commit 25f3d97
Show file tree
Hide file tree
Showing 7 changed files with 66 additions and 8 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
46 changes: 45 additions & 1 deletion dist/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -7182,6 +7182,14 @@ video {
font-size: 90px;
}

.text-sub-heading {
font-size: 40px;
}

.text-dependencie-heading {
font-size: 25px;
}

.italic {
font-style: italic;
}
Expand Down Expand Up @@ -7619,7 +7627,11 @@ main > h1 {
}

main > h2 {
font-size: 2.25rem;
font-size: 40px;
}

main > h3 {
font-size: 25px;
}

@media (min-width: 640px) {
Expand Down Expand Up @@ -14178,6 +14190,14 @@ main > h2 {
font-size: 90px;
}

.sm\:text-sub-heading {
font-size: 40px;
}

.sm\:text-dependencie-heading {
font-size: 25px;
}

.sm\:italic {
font-style: italic;
}
Expand Down Expand Up @@ -21148,6 +21168,14 @@ main > h2 {
font-size: 90px;
}

.md\:text-sub-heading {
font-size: 40px;
}

.md\:text-dependencie-heading {
font-size: 25px;
}

.md\:italic {
font-style: italic;
}
Expand Down Expand Up @@ -28118,6 +28146,14 @@ main > h2 {
font-size: 90px;
}

.lg\:text-sub-heading {
font-size: 40px;
}

.lg\:text-dependencie-heading {
font-size: 25px;
}

.lg\:italic {
font-style: italic;
}
Expand Down Expand Up @@ -35088,6 +35124,14 @@ main > h2 {
font-size: 90px;
}

.xl\:text-sub-heading {
font-size: 40px;
}

.xl\:text-dependencie-heading {
font-size: 25px;
}

.xl\:italic {
font-style: italic;
}
Expand Down
7 changes: 4 additions & 3 deletions dist/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -12568,7 +12568,8 @@ new vue__WEBPACK_IMPORTED_MODULE_0___default.a({
return {
message: 'Tailwind Template',
versionMessage: 'Using Tailwind {version}',
version: '1.0.4'
dependenciesMessage: 'Vue, Sass & Laravel-Mix',
tailwindVersion: '1.0.4'
};
}
});
Expand All @@ -12593,8 +12594,8 @@ new vue__WEBPACK_IMPORTED_MODULE_0___default.a({
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {

__webpack_require__(/*! /Users/pascalh/Desktop/Roulette/src/js/app.js */"./src/js/app.js");
module.exports = __webpack_require__(/*! /Users/pascalh/Desktop/Roulette/src/sass/app.scss */"./src/sass/app.scss");
__webpack_require__(/*! /Users/pascalh/Desktop/TailwindBoilerplate/src/js/app.js */"./src/js/app.js");
module.exports = __webpack_require__(/*! /Users/pascalh/Desktop/TailwindBoilerplate/src/sass/app.scss */"./src/sass/app.scss");


/***/ })
Expand Down
7 changes: 5 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
</div>
<div class="code version-section">
<a
href="https://your-url"
href="https://github.com/PascalHesselink/TailwindBoilerplate"
class="github-corner"
aria-label="View source on GitHub"
target="_blank"
Expand Down Expand Up @@ -99,8 +99,11 @@
<main>
<h1>{{ message }}</h1>
<h2>
{{ versionMessage.replace('{version}', version) }}
{{ versionMessage.replace('{version}', tailwindVersion) }}
</h2>
<h3>
{{ dependenciesMessage }}
</h3>
</main>
</div>
<script src="dist/js/app.js"></script>
Expand Down
3 changes: 2 additions & 1 deletion src/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ new Vue({
return {
message: 'Tailwind Template',
versionMessage: 'Using Tailwind {version}',
version: '1.0.4',
dependenciesMessage: 'Vue, Sass & Laravel-Mix',
tailwindVersion: '1.0.4',
};
},
});
6 changes: 5 additions & 1 deletion src/sass/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,9 @@ main > h1 {
}

main > h2 {
@apply text-4xl;
@apply text-sub-heading;
}

main > h3 {
@apply text-dependencie-heading;
}
2 changes: 2 additions & 0 deletions tailwind.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ module.exports = {
extend: {
fontSize: {
'main-heading': '90px',
'sub-heading': '40px',
'dependencie-heading': '25px',
},
},
},
Expand Down

0 comments on commit 25f3d97

Please sign in to comment.