fix: subtitle color
All checks were successful
/ deploy (push) Successful in 11s

This commit is contained in:
ange 2024-09-25 13:10:23 +07:00
parent f222496429
commit 50c8cb051d
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D
6 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,4 @@
FROM docker.io/nginx:latest FROM docker.io/nginx:latest
COPY nginx.conf /etc/nginx/conf.d/default.conf COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY static/ /usr/share/nginx/html/ COPY html/ /usr/share/nginx/html/
COPY static/ /usr/share/nginx/static/

View File

@ -35,7 +35,7 @@
<div id="main"> <div id="main">
<h1>4th year EPITECH student</h1> <h1>4th year EPITECH student</h1>
<img src="2404.webp" alt="Ange DUHAYON" width="128"> <img src="static/2404.webp" alt="Ange DUHAYON" width="128">
<h2 id="formation">FORMATION</h2> <h2 id="formation">FORMATION</h2>
<h3><b>EPITECH Toulouse</b> - Promo 2026</h3> <h3><b>EPITECH Toulouse</b> - Promo 2026</h3>
<ul> <ul>

View File

@ -84,6 +84,7 @@ h4 {
font-size: 0.75em; font-size: 0.75em;
font-style: italic; font-style: italic;
margin-left: 1em; margin-left: 1em;
color: #fff;
} }
#content { #content {

View File

@ -7,4 +7,8 @@ server {
root /usr/share/nginx/html; root /usr/share/nginx/html;
index index.html; index index.html;
} }
location /static/ {
root /usr/share/nginx/;
}
} }