@@ -0,0 +1,8 @@ | |||
# Default ignored files | |||
/shelf/ | |||
/workspace.xml | |||
# Editor-based HTTP Client requests | |||
/httpRequests/ | |||
# Datasource local storage ignored files | |||
/dataSources/ | |||
/dataSources.local.xml |
@@ -0,0 +1,8 @@ | |||
<?xml version="1.0" encoding="UTF-8"?> | |||
<project version="4"> | |||
<component name="ProjectModuleManager"> | |||
<modules> | |||
<module fileurl="file://$PROJECT_DIR$/.idea/portes-ouvertes-hop.iml" filepath="$PROJECT_DIR$/.idea/portes-ouvertes-hop.iml" /> | |||
</modules> | |||
</component> | |||
</project> |
@@ -0,0 +1,8 @@ | |||
<?xml version="1.0" encoding="UTF-8"?> | |||
<module type="WEB_MODULE" version="4"> | |||
<component name="NewModuleRootManager"> | |||
<content url="file://$MODULE_DIR$" /> | |||
<orderEntry type="inheritedJdk" /> | |||
<orderEntry type="sourceFolder" forTests="false" /> | |||
</component> | |||
</module> |
@@ -0,0 +1,22 @@ | |||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8"> | |||
<title>Portes Ouvertes Hôp Hôp Hôp - 25 septembre 2021</title> | |||
<link rel="stylesheet" href="style.css"> | |||
</head> | |||
<body> | |||
<h1 class="title">Bienvenue aux portes ouvertes de </h1> | |||
<img id="logo-hop" src="logo-hop.png" alt="Logo hop hop hop"/> | |||
<h2 class="title">Vous êtes chez :</h2> | |||
<img id="logo-laclic" src="laclic.png" alt="Logo hop hop hop"/> | |||
</body> | |||
</html> |
@@ -0,0 +1,29 @@ | |||
body{ | |||
text-align: center; | |||
font-family: "DejaVu Sans", SansSerif; | |||
} | |||
.title{ | |||
color: #456; | |||
} | |||
h1{ | |||
margin-top: 100px; | |||
margin-bottom: 50px; | |||
} | |||
h2{ | |||
margin-top: 100px; | |||
margin-bottom: 50px; | |||
} | |||
#logo-laclic:hover{ | |||
cursor: crosshair; | |||
opacity: 0.5; | |||
} | |||
#logo-hop:hover{ | |||
cursor: crosshair; | |||
opacity: 0.5; | |||
} |