hedera-web/forms/admin/photos/style.css

74 lines
867 B
CSS
Raw Normal View History

2015-02-01 03:21:54 +00:00
2015-03-06 23:33:54 +00:00
.photos
2015-02-01 03:21:54 +00:00
{
2015-02-08 15:38:38 +00:00
padding: 1em;
2015-02-01 03:21:54 +00:00
}
2015-03-06 23:33:54 +00:00
.photos .box
2015-02-01 03:21:54 +00:00
{
2017-05-08 15:54:35 +00:00
max-width: 25em;
2015-12-02 17:26:58 +00:00
padding: 2em;
2015-02-01 03:21:54 +00:00
}
2017-05-08 15:54:35 +00:00
/* Dropzone */
.photos .dropzone
{
background-color: white;
border-style: dashed;
border-radius: .4em;
border-color: #2196F3;
padding: 2em 1em;
text-align: center;
color: #666;
cursor: pointer;
}
.photos .dropzone.dragover
2015-02-01 03:21:54 +00:00
{
2017-05-08 15:54:35 +00:00
color: #CCC;
border-style: solid;
2015-02-01 03:21:54 +00:00
}
2017-05-08 15:54:35 +00:00
.photos input[type=file]
2015-02-01 03:21:54 +00:00
{
display: none;
}
2017-05-08 15:54:35 +00:00
/* File list */
.photos .file-list
{
margin-top: 1em;
}
.photos .file-list > div
{
height: 2.5em;
}
.photos .file-list .thumb
{
max-height: 2em;
max-width: 2em;
vertical-align: middle;
margin: 0 1em;
}
.photos .file-list input
{
max-width: 10em;
}
.photos .file-list .status
{
margin-left: .5em;
cursor: pointer;
}
2015-02-01 03:21:54 +00:00
/* Footer */
2017-05-08 15:54:35 +00:00
.photos .footer
2015-02-01 03:21:54 +00:00
{
margin-top: 1.5em;
2017-05-08 15:54:35 +00:00
text-align: center;
}
.photos .footer > button
{
2016-08-30 07:43:47 +00:00
font-size: 1.2em;
2017-05-08 15:54:35 +00:00
margin-left: 1em;
2015-02-01 03:21:54 +00:00
}