mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-13 06:27:55 +01:00
47 lines
720 B
CSS
47 lines
720 B
CSS
body {
|
|
font-family: Helvetica, Abel, Arial;
|
|
font-size: 1em;
|
|
-webkit-user-select: none; /* webkit (safari, chrome) browsers */
|
|
-moz-user-select: none; /* mozilla browsers */
|
|
-khtml-user-select: none; /* webkit (konqueror) browsers */
|
|
-ms-user-select: none; /* IE10+ */
|
|
}
|
|
|
|
button {
|
|
font-size: 1em;
|
|
}
|
|
|
|
.item {
|
|
width:150px;
|
|
height:130px;
|
|
border:1px solid black;
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
background-color: white;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.item.selected {
|
|
background-color: #7cf;
|
|
}
|
|
|
|
#frmUpload {
|
|
display: inline;
|
|
}
|
|
|
|
input[type='file'] {
|
|
width: 1px;
|
|
opacity:0
|
|
}
|
|
|
|
#txtInfo {
|
|
float: right;
|
|
margin-top: 5px;
|
|
/*display: inline-block;*/
|
|
}
|
|
|
|
img#logo {
|
|
cursor: pointer;
|
|
}
|
|
|