This repository has been archived by the owner on Nov 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 75ed867
Showing
105 changed files
with
3,310 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
RewriteEngine On | ||
|
||
# cele domeny (aliasy) | ||
RewriteCond %{REQUEST_URI} !^domains/ | ||
RewriteCond %{REQUEST_URI} !^/domains/ | ||
RewriteCond %{HTTP_HOST} ^(www\.)?(.*)$ | ||
RewriteCond %{DOCUMENT_ROOT}/domains/%2 -d | ||
RewriteRule (.*) domains/%2/$1 [DPI] | ||
|
||
# subdomeny (s nebo bez www na zacatku) | ||
RewriteCond %{REQUEST_URI} !^subdom/ | ||
RewriteCond %{REQUEST_URI} !^/subdom/ | ||
RewriteCond %{HTTP_HOST} ^(www\.)?(.*)\.([^\.]*)\.([^\.]*)$ | ||
RewriteCond %{DOCUMENT_ROOT}/subdom/%2 -d | ||
RewriteRule (.*) subdom/%2/$1 [DPI] | ||
|
||
# aliasy - spravne presmerovani pri chybejicim / | ||
RewriteCond %{REQUEST_FILENAME} -d | ||
RewriteRule ^domains/[^/]+/(.+[^/])$ /$1/ [R] | ||
|
||
# subdomeny - spravne presmerovani pri chybejicim / | ||
RewriteCond %{REQUEST_FILENAME} -d | ||
RewriteRule ^subdom/[^/]+/(.+[^/])$ /$1/ [R] | ||
|
||
RewriteRule ^cv$ cizmarova_cv.pdf [L] | ||
RewriteRule ^([a-z\-]+)$ $1.html [L] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Page Not Found :(</title> | ||
<style> | ||
::-moz-selection { | ||
background: #b3d4fc; | ||
text-shadow: none; | ||
} | ||
|
||
::selection { | ||
background: #b3d4fc; | ||
text-shadow: none; | ||
} | ||
|
||
html { | ||
padding: 30px 10px; | ||
font-size: 20px; | ||
line-height: 1.4; | ||
color: #737373; | ||
background: #f0f0f0; | ||
-webkit-text-size-adjust: 100%; | ||
-ms-text-size-adjust: 100%; | ||
} | ||
|
||
html, | ||
input { | ||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | ||
} | ||
|
||
body { | ||
max-width: 500px; | ||
_width: 500px; | ||
padding: 30px 20px 50px; | ||
border: 1px solid #b3b3b3; | ||
border-radius: 4px; | ||
margin: 0 auto; | ||
box-shadow: 0 1px 10px #a7a7a7, inset 0 1px 0 #fff; | ||
background: #fcfcfc; | ||
} | ||
|
||
h1 { | ||
margin: 0 10px; | ||
font-size: 50px; | ||
text-align: center; | ||
} | ||
|
||
h1 span { | ||
color: #bbb; | ||
} | ||
|
||
h3 { | ||
margin: 1.5em 0 0.5em; | ||
} | ||
|
||
p { | ||
margin: 1em 0; | ||
} | ||
|
||
ul { | ||
padding: 0 0 0 40px; | ||
margin: 1em 0; | ||
} | ||
|
||
.container { | ||
max-width: 380px; | ||
_width: 380px; | ||
margin: 0 auto; | ||
} | ||
|
||
/* google search */ | ||
|
||
#goog-fixurl ul { | ||
list-style: none; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
#goog-fixurl form { | ||
margin: 0; | ||
} | ||
|
||
#goog-wm-qt, | ||
#goog-wm-sb { | ||
border: 1px solid #bbb; | ||
font-size: 16px; | ||
line-height: normal; | ||
vertical-align: top; | ||
color: #444; | ||
border-radius: 2px; | ||
} | ||
|
||
#goog-wm-qt { | ||
width: 220px; | ||
height: 20px; | ||
padding: 5px; | ||
margin: 5px 10px 0 0; | ||
box-shadow: inset 0 1px 1px #ccc; | ||
} | ||
|
||
#goog-wm-sb { | ||
display: inline-block; | ||
height: 32px; | ||
padding: 0 10px; | ||
margin: 5px 0 0; | ||
white-space: nowrap; | ||
cursor: pointer; | ||
background-color: #f5f5f5; | ||
background-image: -webkit-linear-gradient(rgba(255,255,255,0), #f1f1f1); | ||
background-image: -moz-linear-gradient(rgba(255,255,255,0), #f1f1f1); | ||
background-image: -ms-linear-gradient(rgba(255,255,255,0), #f1f1f1); | ||
background-image: -o-linear-gradient(rgba(255,255,255,0), #f1f1f1); | ||
-webkit-appearance: none; | ||
-moz-appearance: none; | ||
appearance: none; | ||
*overflow: visible; | ||
*display: inline; | ||
*zoom: 1; | ||
} | ||
|
||
#goog-wm-sb:hover, | ||
#goog-wm-sb:focus { | ||
border-color: #aaa; | ||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); | ||
background-color: #f8f8f8; | ||
} | ||
|
||
#goog-wm-qt:hover, | ||
#goog-wm-qt:focus { | ||
border-color: #105cb6; | ||
outline: 0; | ||
color: #222; | ||
} | ||
|
||
input::-moz-focus-inner { | ||
padding: 0; | ||
border: 0; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>Not found <span>:(</span></h1> | ||
<p>Sorry, but the page you were trying to view does not exist.</p> | ||
<p>It looks like this was the result of either:</p> | ||
<ul> | ||
<li>a mistyped address</li> | ||
<li>an out-of-date link</li> | ||
</ul> | ||
<script> | ||
var GOOG_FIXURL_LANG = (navigator.language || '').slice(0,2),GOOG_FIXURL_SITE = location.host; | ||
</script> | ||
<script src="http://linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<!DOCTYPE html> | ||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="cs"> <![endif]--> | ||
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="cs"> <![endif]--> | ||
<!--[if IE 8]> <html class="no-js lt-ie9" lang="cs"> <![endif]--> | ||
<!--[if gt IE 8]><!--> <html class="no-js" lang="cs"> <!--<![endif]--> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
<title>O mně · Tereza Čižmárová</title> | ||
<link rel="shortcut icon" href="favicon.ico" /> | ||
<meta name="description" content="Portfolio Terezy Čižmárové, designérky věnující se především produktovému, obalovému a grafickému designu."> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta http-equiv="Content-Language" content="cs" /> | ||
|
||
<link rel="stylesheet" href="css/normalize.css"> | ||
<link rel="stylesheet" href="css/main.css"> | ||
<link rel="stylesheet" href="css/styles2.css"> | ||
|
||
<script src="js/vendor/modernizr-2.6.2.min.js"></script> | ||
<script type="text/javascript" src="//use.typekit.net/tyx0vph.js"></script> | ||
<script type="text/javascript">try{Typekit.load();}catch(e){}</script> | ||
</head> | ||
<body id="bio"> | ||
<!--[if lt IE 7]> | ||
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p> | ||
<![endif]--> | ||
<div id="fb-root"></div> | ||
<script>(function(d, s, id) { | ||
var js, fjs = d.getElementsByTagName(s)[0]; | ||
if (d.getElementById(id)) return; | ||
js = d.createElement(s); js.id = id; | ||
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=184599681622026"; | ||
fjs.parentNode.insertBefore(js, fjs); | ||
}(document, 'script', 'facebook-jssdk'));</script> | ||
|
||
<div class="pad"> | ||
<a href="index" id="logo" class="clearfix"><span></span><h1>Tereza Čižmárová</h1></a> | ||
</div> | ||
<header> | ||
<nav><a href="index">Zpět na úvod</a></nav> | ||
<div id="social"> | ||
<div class="fb-like" data-href="http://www.terezina.cz" data-layout="button_count" data-send="false" data-width="450" data-show-faces="false"></div> | ||
</div> | ||
</header> | ||
<span class="bg produkt"></span> | ||
<span class="bg obal"></span> | ||
<span class="bg grafika"></span> | ||
<div class="pad"> | ||
<h2>Atraktivní, ale zároveň i chytrý design</h2> | ||
<h3>Je mi 22 let a již čtvrtým rokem studuji 3D Design na Fakultě multimediálních komunikací Univerzity Tomáše Bati. <span>V řešení produktového, obalového a grafického designu uplatňuji především svou nápaditost a pracovitost. Pokud váháte, zda-li Vaše firma či produkty nepotřebují trochu oživit, našli jste toho pravého člověka. Neváhejte a <script type="text/javascript" language="javascript"> | ||
<!-- | ||
ML="oh\"alt. šfc=!<"+"pzme/g@:>nriv"; | ||
MI="=371HA9;2@3I450E5AHA?36:I?@3H0J3DC@3I46:0@2FG3>I85A<"+"=B3F"; | ||
OT=""; | ||
for(j=0;j<MI.length;j++){ | ||
OT+=ML.charAt(MI.charCodeAt(j)-48); | ||
}document.write(OT); | ||
// --></script> | ||
</span></h3> | ||
|
||
<footer class="clearfix"> | ||
<div class="right"> | ||
<h6 id="author">© 2013 <a href="bio" rel="author">Tereza Čižmárová</a></h6> | ||
</div> | ||
</footer> | ||
</div> | ||
|
||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> | ||
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.8.3.min.js"><\/script>')</script> | ||
|
||
<script src="js/plugins.js"></script> | ||
<script src="js/main.js"></script> | ||
|
||
<script> | ||
var _gaq=[['_setAccount','UA-37588124-1'],['_trackPageview']]; | ||
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0]; | ||
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js'; | ||
s.parentNode.insertBefore(g,s)}(document,'script')); | ||
</script> | ||
</body> | ||
</html> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0"?> | ||
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd"> | ||
<cross-domain-policy> | ||
<!-- Read this: www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html --> | ||
|
||
<!-- Most restrictive policy: --> | ||
<site-control permitted-cross-domain-policies="none"/> | ||
|
||
<!-- Least restrictive policy: --> | ||
<!-- | ||
<site-control permitted-cross-domain-policies="all"/> | ||
<allow-access-from domain="*" to-ports="*" secure="false"/> | ||
<allow-http-request-headers-from domain="*" headers="*" secure="false"/> | ||
--> | ||
</cross-domain-policy> |
Oops, something went wrong.