fix tooltip in record editor

fix images path in record editor
wip: standardize font-sizes
This commit is contained in:
Florian BLOUET
2015-11-27 13:24:36 +01:00
parent 4e7131f296
commit 34689daaa8
37 changed files with 209 additions and 231 deletions

View File

@@ -8,40 +8,36 @@
{% block stylesheet %}
<style type="text/css">
html{
color:white;
background-color:#212121;
}
body{
font-family:Helvetica, Arial, sans-serif;
font-size:14px;
overflow:auto;
min-height:100%;
width:100%;
top:0;
left:0;
position:absolute;
body {
color: #FFFFFF;
background-color: #212121;
font-family: Helvetica, Arial, sans-serif;
font-size: 14px;
overflow: auto;
min-height: 100%;
width: 100%;
}
h1{
font-size:26px;
font-weight:bold;
padding:50px 0 20px;
h1 {
font-size: 26px;
font-weight: bold;
padding: 50px 0 20px;
}
#page{
width:860px;
background-color:#414141;
padding:0 20px;
margin:0 auto;
height:100%;
#page {
width: 860px;
background-color: #414141;
padding: 0 20px;
margin: 0 auto;
height: 100%;
position: relative !important;
}
.preview .thumb_wrapper{
overflow:hidden;
}
.caption{
padding:50px 0 20px;
.preview .thumb_wrapper {
overflow: hidden;
}
.caption {
padding: 50px 0 20px;
}
</style>
{% endblock %}