46 lines
791 B
CSS
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;
|
||
|
}
|