Skip to content

Instantly share code, notes, and snippets.

@jlcarvalho
Last active August 29, 2015 14:20
Show Gist options
  • Save jlcarvalho/8c8c67f3dd5ba4e4b93d to your computer and use it in GitHub Desktop.
Save jlcarvalho/8c8c67f3dd5ba4e4b93d to your computer and use it in GitHub Desktop.
Layouter
<!-- Boa parte desse HTML será fixo no backend -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Layout</title>
<style>
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background-color: #FAFAFA;
font: 12pt "Tahoma";
}
* {
box-sizing: border-box;
-moz-box-sizing: border-box;
}
.page {
width: 1122px;
min-height: 794px;
margin: 30px auto;
border: 1px #D3D3D3 solid;
background: white;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.moldura {
width: 100%;
height: 100%;
padding: 60px;
background: url(moldura.png);
background-size: 100%;
}
.container {
height: 674px;
}
.logo > img {
width: 200px;
}
.certificado {
width: 100%;
text-align: center;
}
</style>
</head>
<body>
<div class="page">
<div class="moldura">
<div class="container">
<!-- Daqui pra baixo são os fragmentos que eu irei te enviar -->
<div class="draggable logo">
<img src="http://webpages.scu.edu/ftp/jready/images/red-nike-logo.gif" alt="Nike">
</div>
<div class="draggable titulo"></div>
<h1 class="draggable certificado">Certificado</h1>
<div class="draggable texto">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nihil, sed, aliquam. Modi laborum minima ipsum odit voluptates doloremque, exercitationem atque totam quibusdam. Facere numquam est quod ex, cumque reprehenderit, quibusdam.
</div>
<div class="draggable pessoa"></div>
<div class="draggable assinatura"></div>
<!-- Os fragmentos acabam aqui -->
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment