forked from crunk/distribusi-verse
crunk
3 years ago
5 changed files with 63 additions and 1 deletions
@ -0,0 +1,30 @@ |
|||||
|
/* Try out your CSS here */ |
||||
|
body { |
||||
|
background-color: hotpink; |
||||
|
} |
||||
|
.image{ |
||||
|
max-width: 100%; |
||||
|
} |
||||
|
.dir::before{ |
||||
|
content:"📁 "; |
||||
|
font-size:18px; |
||||
|
} |
||||
|
.filename{ |
||||
|
display:block; |
||||
|
font-family:mono; |
||||
|
} |
||||
|
.unkown-file::before{ |
||||
|
content:"📄 "; |
||||
|
font-size:18px; |
||||
|
} |
||||
|
div{ |
||||
|
max-width: 640px; |
||||
|
display:inline-block; |
||||
|
vertical-align:top; |
||||
|
margin:1em; |
||||
|
padding:1em; |
||||
|
} |
||||
|
video { |
||||
|
width:640px; |
||||
|
max-height:640px; |
||||
|
} |
@ -0,0 +1,15 @@ |
|||||
|
<pre>Write some test HTML here</pre> |
||||
|
<div id="folder" class="dir"><a href='example'>example folder</a></div> |
||||
|
<div id="willemdekooning-logo" class="png"> |
||||
|
<figure> |
||||
|
<img class="image" src="https://www.wdka.nl/build/img/willemdekooning-logo.png"> |
||||
|
<figcaption>logo.png</figcaption> |
||||
|
</figure> |
||||
|
</div> |
||||
|
<div id="example_video" class="mp4"> |
||||
|
<video controls> |
||||
|
<source src="example_video.mp4"> |
||||
|
</video> |
||||
|
<span class="filename">example_video.mp4</span> |
||||
|
</div> |
||||
|
<div id="unknown.file" class="plain unkown-file"><a href='unknown.file'>unknown.file</a></div> |
Loading…
Reference in new issue