diff options
| author | JoelHMikael <joel.h.kronqvist@gmail.com> | 2022-01-09 20:17:16 +0200 | 
|---|---|---|
| committer | JoelHMikael <joel.h.kronqvist@gmail.com> | 2022-01-09 20:17:16 +0200 | 
| commit | 21e79dcc1eabebfd661a2fd38681348ae9428c4e (patch) | |
| tree | 5a3022d974155a403ee0e1e573a20db6f4ea3003 /Cont | |
| parent | 24709fa862636702fd0430e832463b751fce323e (diff) | |
| download | LYLLRuoka-21e79dcc1eabebfd661a2fd38681348ae9428c4e.tar.gz LYLLRuoka-21e79dcc1eabebfd661a2fd38681348ae9428c4e.zip  | |
Database implemented
Some polishing wouldn't do bad though...
Diffstat (limited to 'Cont')
| -rw-r--r-- | Cont/index.css | 6 | ||||
| -rw-r--r-- | Cont/index.html | 14 | 
2 files changed, 13 insertions, 7 deletions
diff --git a/Cont/index.css b/Cont/index.css index 1f5a422..80e5dc6 100644 --- a/Cont/index.css +++ b/Cont/index.css @@ -107,10 +107,16 @@ footer > a {  }  /*** the info buttons & their animations ***/ +img.info:hover { +	filter: drop-shadow(.125rem .125rem 0 black); +	transform: translate(-0.125rem, -0.125rem); +}  img.info {  	width: 1em;  	height: 1em;  	vertical-align: middle; +	filter: drop-shadow(.0625rem .0625rem 0 black); +	transform: translate(-0.0625rem, -0.0625rem);  }  img.info + span { diff --git a/Cont/index.html b/Cont/index.html index c35b7c1..95dcb32 100644 --- a/Cont/index.html +++ b/Cont/index.html @@ -25,13 +25,13 @@  					<label for="day">Päivä:</label>  					<br>  					<select name="day"> -						<option value="1">ma</option> -						<option value="2">ti</option> -						<option value="3">ke</option> -						<option value="4">to</option> -						<option value="5">pe</option> -						<option value="6" disabled>la</option> -						<option value="0" disabled>su</option> +						<option value="0">ma</option> +						<option value="1">ti</option> +						<option value="2">ke</option> +						<option value="3">to</option> +						<option value="4">pe</option> +						<option value="5" disabled>la</option> +						<option value="6" disabled>su</option>  					</select>  					<br>  					<input type="submit" id="send" class="highlight" value="Löydä vuoro">  | 
