Skip to content

Commit d3d6cfa

Browse files
committed
Initial commit of basic theme.
0 parents  commit d3d6cfa

17 files changed

+2354
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.*.swp
2+
node_modules
3+
workspace

README.md

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
Doodle CSS is a simple hand drawn HTML/CSS theme.
2+
3+
[![Doodle CSS screenshot](./screenshot.png)](https://chr15m.github.io/DoodleCSS)
4+
5+
[Demo and more HTML elements](https://chr15m.github.io/DoodleCSS).
6+
7+
# How to use it
8+
9+
The main stylesheet is [doodle.css](./doodle.css).
10+
11+
```html
12+
<link rel="stylesheet" href="doodle.css">
13+
```
14+
15+
Then add the class `doodle` to the top level element you want to apply the theme to:
16+
17+
```html
18+
<body class="doodle">...</body>
19+
```
20+
21+
Load the Short Stack web font:
22+
```html
23+
<style>
24+
@import url('https://fonts.googleapis.com/css2?family=Short+Stack&display=swap');
25+
body {
26+
font-family: 'Short Stack', cursive;
27+
}
28+
</style>
29+
```
30+
31+
There's also an npm installable version:
32+
33+
```
34+
npm install doodlecss
35+
```
36+
37+
There are are bunch of other vectors you can use in [doodles.svg](./doodles.svg).
38+
39+
You can also put a doodle box around anything using the class `.doodle .border` or `.doodle-border`.
40+
41+
# Who
42+
43+
By [Chris McCormick](https://mccormick.cx/) ([@mccrmx](https://twitter.com/mccrmx)).
44+
45+
See [the demo](https://chr15m.github.io/DoodleCSS) for thanks and resources used.

border.svg

+83
Loading

bq.svg

+68
Loading

button.svg

+67
Loading

caret.svg

+66
Loading

0 commit comments

Comments
 (0)