Skip to content

Commit

Permalink
v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
diederik committed Nov 26, 2020
1 parent bf0a2df commit 97af3b4
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 0 deletions.
38 changes: 38 additions & 0 deletions css/base.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
@tailwind base;
@tailwind components;
h1 {
@apply text-3xl;
}
h2 {
@apply text-2xl;
}
h3 {
@apply text-xl;
}
h4 {
@apply text-lg;
}
h5 {
@apply text-lg;
}


@tailwind components;
.notices{
@apply py-4 !important;
}
.gt_color {
color : #68ABDF !important;
}
.selected a{
color: #2439BB;
}

.gravtail_input {
@apply shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight;
}
.gravtail_input:hover {
@apply outline-none;
/*@apply shadow-outline;*/
}
@tailwind utilities;
11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"private": true,
"scripts": {
"build": "npx tailwindcss build css/base.css -o css/gravtail.css"
},
"dependencies": {
"tailwindcss": "^2.0.0",
"postcss": "^8.0.2",
"autoprefixer": "^10.0.0"
}
}
15 changes: 15 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
'mygreen': '#0C8A27',
}
},
},
variants: {
extend: {},
},
plugins: [],
}

0 comments on commit 97af3b4

Please sign in to comment.