diff options
Diffstat (limited to 'Cont/devs')
| -rw-r--r-- | Cont/devs/index.css | 18 | ||||
| -rw-r--r-- | Cont/devs/index.html | 26 | 
2 files changed, 44 insertions, 0 deletions
diff --git a/Cont/devs/index.css b/Cont/devs/index.css new file mode 100644 index 0000000..1cce621 --- /dev/null +++ b/Cont/devs/index.css @@ -0,0 +1,18 @@ +.column { +	display: inline-block; +	padding: 0; +	margin: .5em; +	box-sizing: border-box; +	vertical-align: middle; +	overflow-wrap: break-word; +	width: 100%; +} + + +@media screen and (min-width: 700px) +{ +	.column { +		width: calc(33% - 2em); +	} +} + diff --git a/Cont/devs/index.html b/Cont/devs/index.html new file mode 100644 index 0000000..69116c6 --- /dev/null +++ b/Cont/devs/index.html @@ -0,0 +1,26 @@ +<!DOCTYPE html> +<html lang="fi"> +	<head> +		<meta charset="utf-8"> +		<title>Developers</title> +		<link href="/index.css" rel="stylesheet" type="text/css"> +		<link href="/non-main.css" rel="stylesheet" type="text/css"> +		<link href="/devs/index.css" rel="stylesheet" type="text/css"> +		<meta name="viewport" content="width=device-width, initial-scale=1"> +	</head> +	<body> +		<h1 class="shadow">Sivun kehittäjät</h1> +		<p>Jos muokkaat/lisäät jotain tähän projektiin, voit pyytää serverin ylläpidosta vastaavilta, että nimesi lisätään tietokantaan.</p> + +		\(devs\) + +		<a class="back" href="/"><img src="/Images/back.png" alt="Takaisin etusivulle"></a> + +		<footer> +			<a href="https://www.github.com/JoelHMikael/FoodJS">Lähdekoodi</a> +			<span>|</span> +			<a href="/devs">Ota yhteyttä</a> +		</footer> + +	</body> +</html>  | 
