mirror of
https://github.com/go-task/task.git
synced 2025-04-23 12:18:57 +02:00
New logo and color
This commit is contained in:
parent
ac8e344173
commit
777645888a
19
README.md
19
README.md
@ -1,10 +1,15 @@
|
|||||||

|
<div align="center">
|
||||||

|
<a href="https://taskfile.dev">
|
||||||

|
<img src="docs/Logo.png" width="200px" height="200px" />
|
||||||
|
</a>
|
||||||
|
|
||||||
# Task
|
<h1>Task</h1>
|
||||||
|
|
||||||
Task is a task runner / build tool that aims to be simpler and easier to use
|
<p>
|
||||||
than, for example, [GNU Make](https://www.gnu.org/software/make/).
|
Task is a task runner / build tool that aims to be simpler and easier to use than, for example, <a href="https://www.gnu.org/software/make/">GNU Make<a>.
|
||||||
|
</p>
|
||||||
|
|
||||||
See [taskfile.dev](https://taskfile.dev) for the documentation.
|
<p>
|
||||||
|
See <a href="https://taskfile.dev">taskfile.dev</a> for the documentation.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
BIN
docs/Logo.png
Normal file
BIN
docs/Logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
@ -1,5 +1,9 @@
|
|||||||
# Task
|
# Task
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
<img id="logo" src="/Logo.png" height="250px" width="250px" />
|
||||||
|
</div>
|
||||||
|
|
||||||
Task is a task runner / build tool that aims to be simpler and easier to use
|
Task is a task runner / build tool that aims to be simpler and easier to use
|
||||||
than, for example, [GNU Make][make].
|
than, for example, [GNU Make][make].
|
||||||
|
|
||||||
|
@ -10,3 +10,8 @@ tasks:
|
|||||||
desc: Serves the documentation site locally
|
desc: Serves the documentation site locally
|
||||||
cmds:
|
cmds:
|
||||||
- docsify serve .
|
- docsify serve .
|
||||||
|
|
||||||
|
ico:
|
||||||
|
desc: Generate favicon.ico from Logo.png
|
||||||
|
cmds:
|
||||||
|
- convert -background transparent "Logo.png" -define icon:auto-resize=16,24,32,48,64,72,96,128,256 "favicon.ico"
|
||||||
|
BIN
docs/favicon.ico
BIN
docs/favicon.ico
Binary file not shown.
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 170 KiB |
@ -8,6 +8,19 @@
|
|||||||
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||||
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-themeable/dist/css/theme-simple.css">
|
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-themeable/dist/css/theme-simple.css">
|
||||||
<meta name="google-site-verification" content="VGAYkbdmuaciIDGkBe-eAg9yfZg0C6ostgonbGxxOa0" />
|
<meta name="google-site-verification" content="VGAYkbdmuaciIDGkBe-eAg9yfZg0C6ostgonbGxxOa0" />
|
||||||
|
<style>
|
||||||
|
#logo {
|
||||||
|
transition: all 0.7s ease;
|
||||||
|
}
|
||||||
|
#logo:hover {
|
||||||
|
-webkit-transform: rotateZ(360deg);
|
||||||
|
-ms-transform: rotateZ(360deg);
|
||||||
|
transform: rotateZ(360deg);
|
||||||
|
}
|
||||||
|
.app-name-link img {
|
||||||
|
width: 125px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="app"></div>
|
<div id="app"></div>
|
||||||
@ -15,7 +28,8 @@
|
|||||||
window.$docsify = {
|
window.$docsify = {
|
||||||
name: 'Task',
|
name: 'Task',
|
||||||
repo: 'go-task/task',
|
repo: 'go-task/task',
|
||||||
themeColor: '#00add8',
|
logo: 'Logo.png',
|
||||||
|
themeColor: '#29beb0',
|
||||||
loadSidebar: true,
|
loadSidebar: true,
|
||||||
auto2top: true,
|
auto2top: true,
|
||||||
maxLevel: 3,
|
maxLevel: 3,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user