Skip to content
Snippets Groups Projects
Commit 8d651579 authored by nicolas.paschoud's avatar nicolas.paschoud
Browse files

Front end, function to show element are coming...

parent 7402f098
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,18 @@
</div>
<div id="drive">
<h3>Drive</h3>
<button><img src="/images/folder_img.png" height="50px"></button>
<div class="folder">
<p>
<button><img src="/images/folder_img.png" height="50px"></button>
<p>folder 1</p>
</p>
</div>
<div class="file">
<p>
<button><img src="/images/file_img.png" height="50px"></button>
<p>file 1</p>
</p>
</div>
</div>
<div id="info">
<h3>Infos</h3>
......
* {
margin: 2.5px;
padding: 2px;
box-sizing: border-box;
}
button {
......@@ -13,15 +14,36 @@ button:hover {
#menu {
border: solid grey 2px;
width: 33%;
width: 30%;
float: left;
}
#drive {
border: solid grey 2px;
width: 33%;
width: 30%;
float: left;
}
#info {
border: solid grey 2px;
width: 33%;
width: 30%;
float: left;
}
.folder {
float: left;
}
.folder p{
font-size: 10pt;
text-align: center;
}
.file {
float: left;
}
.file p{
font-size: 10pt;
text-align: center;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment