Skip to content

Commit 2f84fa3

Browse files
committed
docs: Add 06-style.md
1 parent 36d2a68 commit 2f84fa3

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

docs/06-style.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# 06. Style
2+
3+
- `polls/static/polls/style.css`
4+
```css
5+
li a {
6+
color: green;
7+
}
8+
9+
body {
10+
background: white url("images/loopy.png") no-repeat;
11+
}
12+
```
13+
14+
- `polls/templates/polls/index.html`
15+
```html
16+
{% load static %}
17+
18+
<link rel="stylesheet" type="text/css" href="{% static 'polls/style.css' %}">
19+
```
20+
21+
<br>
22+
23+
- tailwind css를 이용한 커스텀

0 commit comments

Comments
 (0)