This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
creylopez
/
AppsPy
Watch
1
Star
1
Fork
0
Code
Issues
2
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Terminada parte 6
politica
Celestino Rey
1 year ago
parent
94ecba1d34
commit
99426c6f8a
3 changed files
with
12 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
BIN
Django/mysite/polls/static/polls/images/background.jpeg
+8
-0
Django/mysite/polls/static/polls/style.css
+4
-0
Django/mysite/polls/templates/polls/index.html
BIN
Django/mysite/polls/static/polls/images/background.jpeg
View File
Before
After
Width:
6000
| Height:
4000
| Size:
5.3 MiB
+ 8
- 0
Django/mysite/polls/static/polls/style.css
View File
@ -0,0 +1,8 @@
li
a
{
color
:
green
;
}
body
{
background
:
white
url
(
"images/background.jpeg"
)
no-repeat
;
background-size
:
50
%
50
%
;
}
+ 4
- 0
Django/mysite/polls/templates/polls/index.html
View File
@ -1,3 +1,7 @@
{% load static %}
<
link
rel
=
"stylesheet"
href
=
"{% static 'polls/style.css' %}"
>
{% if latest_question_list %}
<
ul
>
{% for question in latest_question_list %}
Write
Preview
Loading…
Cancel
Save