Skip to content

Commit

Permalink
docs: Add 06-style.md
Browse files Browse the repository at this point in the history
  • Loading branch information
devpla committed Aug 26, 2021
1 parent 36d2a68 commit 2f84fa3
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/06-style.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# 06. Style

- `polls/static/polls/style.css`
```css
li a {
color: green;
}

body {
background: white url("images/loopy.png") no-repeat;
}
```

- `polls/templates/polls/index.html`
```html
{% load static %}

<link rel="stylesheet" type="text/css" href="{% static 'polls/style.css' %}">
```

<br>

- tailwind css를 이용한 커스텀

0 comments on commit 2f84fa3

Please sign in to comment.