Skip to content

Commit b5ee438

Browse files
Fixed background color sticking out on the right side.
1 parent 2ef9079 commit b5ee438

File tree

2 files changed

+116
-0
lines changed

2 files changed

+116
-0
lines changed

.gitignore

+106
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,109 @@
22
*.swp
33
pandas/guide/.buildinfo
44
pandas/guide/.doctrees
5+
### Python template
6+
# Byte-compiled / optimized / DLL files
7+
__pycache__/
8+
*.py[cod]
9+
*$py.class
10+
11+
# C extensions
12+
*.so
13+
14+
# Distribution / packaging
15+
.Python
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
27+
wheels/
28+
*.egg-info/
29+
.installed.cfg
30+
*.egg
31+
MANIFEST
32+
33+
# PyInstaller
34+
# Usually these files are written by a python script from a template
35+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
36+
*.manifest
37+
*.spec
38+
39+
# Installer logs
40+
pip-log.txt
41+
pip-delete-this-directory.txt
42+
43+
# Unit test / coverage reports
44+
htmlcov/
45+
.tox/
46+
.coverage
47+
.coverage.*
48+
.cache
49+
nosetests.xml
50+
coverage.xml
51+
*.cover
52+
.hypothesis/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
.static_storage/
61+
.media/
62+
local_settings.py
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
target/
76+
77+
# Jupyter Notebook
78+
.ipynb_checkpoints
79+
80+
# pyenv
81+
.python-version
82+
83+
# celery beat schedule file
84+
celerybeat-schedule
85+
86+
# SageMath parsed files
87+
*.sage.py
88+
89+
# Environments
90+
.env
91+
.venv
92+
env/
93+
venv/
94+
ENV/
95+
env.bak/
96+
venv.bak/
97+
98+
# Spyder project settings
99+
.spyderproject
100+
.spyproject
101+
102+
# Rope project settings
103+
.ropeproject
104+
105+
# mkdocs documentation
106+
/site
107+
108+
# mypy
109+
.mypy_cache/
110+
.idea/

static/css/style.css

+10
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@
1313
overflow-x: hidden;
1414
}
1515

16+
.row {
17+
margin-left: 0;
18+
margin-right: 0;
19+
}
20+
21+
.container-fluid {
22+
padding-left: 0;
23+
padding-right: 0;
24+
}
25+
1626
/* Responsive background image handling*/
1727
[data-image-type="responsive"] {
1828
background-size: cover;

0 commit comments

Comments
 (0)