You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
406 B
31 lines
406 B
3 years ago
|
/* 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;
|
||
|
}
|