Archived
1
0
This repository has been archived on 2020-12-10. You can view files and clone it, but cannot push or open issues or pull requests.
old/assets/css/project-edit.css
2018-10-16 18:28:42 +02:00

46 lines
791 B
CSS

.uploaded-image-container {
position: relative;
width: 100%;
height: 200px;
background: #2272ff center;
background-size: cover;
border-radius: 10px;
transition: background-color .2s;
}
.upload-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: rgba(255, 255, 255, .75);
color: #333;
font-size: 18px;
text-align: center;
}
.upload-btn .upload-image {
position: fixed;
top: -1000px;
}
.project-download-button:before {
content: 'Download ';
}
.project-opensource-button:before {
content: 'OpenSource ';
}
.project-custom-button:empty::before {
content: '...';
}
#categories {
height: 160px;
}
.checkbox input[type=checkbox] {
margin: 8px 10px 0 0;
}