Created
February 6, 2014 16:09
-
-
Save slezicz/8847234 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
body { | |
background: #fff; | |
color: #333; | |
font-size: 11px; | |
height: auto; | |
padding-top:60px; | |
} | |
.container_16{ | |
width: 960px; | |
min-height: 920px; | |
background: #fff url(../img/background.png); | |
} | |
.first_page { | |
} | |
.categories{ | |
font-family: 'Finger Paint'; | |
font-size: 35px; | |
font-weight: normal; | |
float:left; | |
/* display: table; */ | |
} | |
#personal_grow { | |
position: relative; | |
top: 295px; | |
left: 410px; | |
clear: both; | |
word-break: normal; | |
word-wrap: break-word; | |
width: 4em; | |
text-align: center; | |
} | |
#health { | |
position: relative; | |
top: 293px; | |
left: 258px; | |
clear: left; | |
} | |
#relationships { | |
position: relative; | |
top: 109px; | |
left: 336px; | |
clear: both; | |
} | |
#inner_stregth { | |
position: relative; | |
top: 27px; | |
left: 510px; | |
clear: both; | |
word-wrap: break-word; | |
word-break: break-word; | |
width: 4em; | |
text-align: center; | |
} | |
#creativity { | |
position: relative; | |
top: -10px; | |
left: 585px; | |
clear: both; | |
} | |
#logo { | |
position: relative; | |
top: 207px; | |
left: 359px; | |
clear: both; | |
float: left; | |
width: 240px; | |
height: 228px; | |
visibility:hidden; | |
} |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>960 Grid System — Demo</title> | |
<link rel="stylesheet" href="css/reset.css" /> | |
<link rel="stylesheet" href="css/text.css" /> | |
<link rel="stylesheet" href="css/960.css" /> | |
<link href='http://fonts.googleapis.com/css?family=Finger+Paint' rel='stylesheet' type='text/css'> | |
<link rel="stylesheet" href="css/main.css" /> | |
</head> | |
<body> | |
<div class="container_16 first_page"> | |
<h1 id="personal_grow" class="categories"> | |
Osobní rozvoj | |
</h1> | |
<h1 id="health" class="categories"> | |
Zdraví | |
</h1> | |
<img id="logo" src="img/fotka-pentagon.png"/> | |
<h1 id="creativity" class="categories"> | |
Kreativita | |
</h1> | |
<h1 id="relationships" class="categories"> | |
Vztahy | |
</h1> | |
<h1 id="inner_stregth" class="categories"> | |
Vnitřní síla | |
</h1> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment