Compare commits

...

2 Commits

4 changed files with 27 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
node_modules/
package-lock.json
dist/

12
index.html Normal file
View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Siahbva</title>
<link rel="icon" href="media/logo-couleur-2.svg">
<link rel="stylesheet" href="style.css">
</head>
<body>
</body>
</html>

11
package.json Normal file
View File

@ -0,0 +1,11 @@
{
"scripts": {
"build-css": "lessc style.less dist/style.css"
},
"dependencies": {
"uikit": "^3.16.28"
},
"devDependencies": {
"less": "^4.2.2"
}
}

1
style.less Normal file
View File

@ -0,0 +1 @@
@import "node_modules/uikit/src/less/uikit.less";