46 lines
800 B
SCSS
46 lines
800 B
SCSS
// User icon editor.
|
|
.characterImageIcon {
|
|
width: 150px;
|
|
height: 200px;
|
|
border-radius: 25px;
|
|
overflow: hidden;
|
|
border: 2px #111 solid;
|
|
display: inline-block;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.characterImagePreviewIcon {
|
|
width: 100px;
|
|
height: 100px;
|
|
float: left;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.characterImageActionsIcon {
|
|
width: 46px;
|
|
float: right;
|
|
padding-top: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
.characterImageActionsIcon a {
|
|
width: 30px;
|
|
height: 30px;
|
|
display: inline-block;
|
|
padding-bottom: 15px;
|
|
}
|
|
|
|
.characterImageIcon a img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.characterImageDescriptionIcon {
|
|
width: 100%;
|
|
clear: both;
|
|
box-sizing: border-box;
|
|
padding: 10px;
|
|
position: relative;
|
|
}
|