1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
| <!DOCTYPE html >
<html>
<head>
<html lang="fr">
<!--meta charset="utf-8"-->
<meta http-equiv="X-UA-Compatible" content="IE=10">
<style>
BODY{
width:99%;
height:99%;
margin-top:1px;
margin-left:1px;
border:1px solid green;
}
#panne{
width:99%;
height:20pt;
background: linear-gradient(to right, rgba(247,251,252,1) 0%,rgba(217,237,242,1) 40%,rgba(173,217,228,1) 100%);
border: 1px solid black;
display:block;
}
#editeur{
width:99%;
min-height:99%;
font-size:18px;
float:left;
border:1px solid gray
}
.fondbouton{
display:block;
background-color:#F2F2F2
width:25px;
height:25px;
margin-left:5px;
margin-top:3px;
border:1px solid black;
float:left;
border-radius:7px;
}
.bouton{
width:104%;
height:102%;
}
.fondbouton:hover {
border:1px solid red;
}
#palette{
background-color:gray;
font-size=1px;
display:block;
width:190px;
height:170px;position:absolute;
top:30px;
left:5px;
border:1px solid black;
}
.Bcolor{
font_size:0px;
fload:left;
width:15px;
height:15px;
margin-top:0px;
margin-left:0px;
border;1px solid black;
}
#fname{
position:absolute;
top:30px;
left:120px;
}
#fsize{
position:absolute;
top:30px;
left:145px;
width:80px;
}
p{
margin:0
}
</style>
<script type="text/javascript">
</script>
</head>
<body>
<DIV id=panne></div>
<div id="editeur" contenteditable=true></div>
</body>
</html> |
Partager