Probaj ovako....
HTML:
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- </head>
- <body>
- <div class="wrapper">
- <div class="center">
- <a href="">ili jesi</a>
- <a href="">ili nisi</a>
- <h1>PUNOLETAN</h1>
- </div>
- </div>
- </body>
- </html>
CSS:
- html, body{
- width:100%;
- height:100%;
- padding:0;
- margin:0;
- }
- .wrapper{
- position:absolute;
- top:0;
- right:0;
- bottom:0;
- left:0;
- }
- .center{
- position:absolute;
- width:650px;
- height:240px;
- top:50%;
- left:50%;
- margin-left:-325px;/* Polovina od širine */
- margin-top:-120px;/* Polovina od visine */
- }
- a{
- float:left;
- width:183px;
- height:78px;
- margin:10px 70px;
- border:solid 1px #729fc9;
- text-align:center;
- line-height:78px;
- background: -moz-linear-gradient(left, rgba(3,67,141,0.3) 0%, rgba(0,169,234,0.3) 100%);
- background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(3,67,141,0.3)), color-stop(100%,rgba(0,169,234,0.3)));
- }
- h1{
- text-align:center;
- }
...i samo ubaci te fontove..... i wrapper daj pozadinu...
|