Skip to content

06. Style

YeonHee edited this page Aug 26, 2021 · 1 revision

06. Style

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

body {
    background: white url("images/loopy.png") no-repeat;
}
  • polls/templates/polls/index.html
{% load static %}

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

  • tailwind css를 이용한 커스텀
Clone this wiki locally