První návrh vzhledu stránky.
authorFrantišek Kučera <franta-hg@frantovo.cz>
Sat Dec 12 11:49:29 2009 +0100 (2009-12-12)
changeset 02c454c74b93d
child 1 84c9d9f6d6ce
První návrh vzhledu stránky.
html/input.png
html/logo.png
html/ramecek.png
html/ramecek.xcf
html/styl.css
html/ulozit.png
html/uložit.html
     1.1 Binary file html/input.png has changed
     2.1 Binary file html/logo.png has changed
     3.1 Binary file html/ramecek.png has changed
     4.1 Binary file html/ramecek.xcf has changed
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/html/styl.css	Sat Dec 12 11:49:29 2009 +0100
     5.3 @@ -0,0 +1,53 @@
     5.4 +body {
     5.5 +	background-color: grey;
     5.6 +	font-family: sans-serif;
     5.7 +}
     5.8 +
     5.9 +h1 {
    5.10 +	display: none;
    5.11 +}
    5.12 +
    5.13 +#logo {
    5.14 +	background-image: url('logo.png');
    5.15 +	position: fixed;	
    5.16 +	width: 128px;
    5.17 +	height: 128px;
    5.18 +	left: 10px;
    5.19 +	top: 100px;
    5.20 +}
    5.21 +
    5.22 +#ramecek {
    5.23 +	background-image: url('ramecek.png');
    5.24 +	background-repeat: no-repeat;
    5.25 +	position: fixed;
    5.26 +	width: 616px;
    5.27 +	height: 216px;	
    5.28 +	left: 100px;
    5.29 +	top: 60px;
    5.30 +	padding-left: 20px;
    5.31 +}
    5.32 +
    5.33 +fieldset {
    5.34 +	border: none;
    5.35 +}
    5.36 +
    5.37 +input {
    5.38 +	background-image: url('input.png');
    5.39 +	background-repeat: no-repeat;
    5.40 +	border: none;
    5.41 +	width: 550px;
    5.42 +	height: 32px;
    5.43 +	padding-left: 8px;
    5.44 +	padding-top: 4px;
    5.45 +	font-size: 20px;
    5.46 +}
    5.47 +
    5.48 +button {
    5.49 +	background-image: url('ulozit.png');
    5.50 +	background-color: transparent;
    5.51 +	border: none;
    5.52 +	width: 64px;
    5.53 +	height: 64px;
    5.54 +	position: relative;
    5.55 +	left: 480px;	
    5.56 +}
     6.1 Binary file html/ulozit.png has changed
     7.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     7.2 +++ b/html/uložit.html	Sat Dec 12 11:49:29 2009 +0100
     7.3 @@ -0,0 +1,30 @@
     7.4 +<?xml version="1.0" encoding="UTF-8"?>
     7.5 +<!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     7.6 +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs" lang="cs">
     7.7 +  <head>
     7.8 +    <meta http-equiv="content-language" content="cs"/>
     7.9 +    <meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8"/>
    7.10 +    <link href="styl.css" type="text/css" rel="StyleSheet"/>
    7.11 +    <title>WebArchivátor</title>
    7.12 +  </head>
    7.13 +  <body>
    7.14 +  
    7.15 +<h1>WebArchivátor</h1>
    7.16 +
    7.17 +<div id="ramecek">
    7.18 +	<p>Archivace stránky</p>
    7.19 +	<form action="uloz.xql" method="get">
    7.20 +		<fieldset>
    7.21 +			<input id="url"></input>
    7.22 +			<button type="submit" title="Uložit stránku"></button>
    7.23 +		</fieldset>
    7.24 +	</form>
    7.25 +
    7.26 +
    7.27 +</div>
    7.28 +<div id="logo"></div>
    7.29 +
    7.30 +  </body>
    7.31 +</html>
    7.32 +
    7.33 +