[Solved] Error when upload css file in ojs 3.1.1

I have tried deleting // as suggested here "No file uploaded or invalid file type!" when uploading css in OJS3 and validating it at https://jigsaw.w3.org/css-validator/validator but the error still comes up
Here is my css

.h2 small {
font-size : 95%;
}
.page-header {
padding-bottom : 10px;
}
h1, .h1 {
font-size : 25px;
}
h2, .h2 {
font-size : 22.5px;
}
.lead {
font-size : 15px;
}
.btn-primary {
color : #6f1818;
background-color : #eee;
border-color : #ced0d2;
}
a {
color : #e1671b;
text-decoration : none;
}
.pkp_page_index .additional_content {
margin-top : 4em;
margin-bottom : 2em;
border-top : 1px solid #eee;
padding-top : 20px;
}
footer[role="contentinfo"] {
margin-top : 0;
}
.col-md-8 {
border-right : 1px solid #eee;
}
.col-md-4 {
padding-top : 4px;
}
.navbar-default .nav > li > a, .header_view .nav > li > a {
color : #eee;
}
.journalInfoCol {
display : flex;
flex-wrap : nowrap;
height : 350px;
margin-bottom : 0;
padding : 0 20px 30px;
}
.journalInfoCol .currentIssueInfo {
width : 250px;
margin-right : 20px;
text-align : center;
border : #eee solid 1px;
padding : 8px;
border-radius : 4px;
}
.currentIssueInfo a {
color : #333;
}
.journalInfoCol .currentIssueInfo img {
max-width : 100%;
max-height : 200px;
margin-bottom : 10px;
}
.journalInfoCol > div {
margin-right : 2%;
padding : 0;
}
.journalInfoCol > div:last-child {
margin-right : 0;
border-radius : 4px;
}
.journalInfoCol > div.infojrnl {
width : 70%;
color : #fff;
padding : 0;
}
.journalInfoCol .highlightBar {
background : rgba(18, 18, 18, 0.8);
padding : 20px;
margin-top : 50px;
}
.journalInfoCol .highlightBar h2 {
color : #fff;
font-weight : 600;
font-size : 30px;
margin : 0;
}
.journalInfoCol > div.infojrnl .highlightBar {
height : 220px;
overflow : hidden;
}
.topSocial {
float : left;
}
.topSocial ul {
list-style : none;
padding : 0;
margin : 0;
}
.topSocial li {
display : inline-block;
}
.topSocial li a {
color : #fff;
display : inline-block;
padding : 7px 0;
text-align : center;
width : 40px;
font-size : 20px;
transition : all 0.5s;
}
.topSocial li a.fa-facebook:hover {
background : #507CBE;
color : #fff;
}
.topSocial li a.fa-twitter:hover {
background : #63CDF1;
color : #fff;
}
.socialBread a {
display : inline-block;
color : #666;
padding : 3px 10px;
font-size : 18px;
line-height : 0;
transition : 0.2s;
}
.socialBread a .fa {
display : inline-block;
vertical-align : middle;
}
.socialBread a.saveStar span {
font-size : 15px;
color : #333;
}
.socialBread a:hover {
color : #eee;
}
.topHeader {
float : right;
padding : 10px 10px;
position : relative;
z-index : 1;
background : #595959;
}
#topMenuRight ul {
list-style : none;
}
#topMenuRight {
padding : 0;
text-align : right;
}
#topMenuRight .menu {
list-style : none;
margin : 0;
}
#topMenuRight .menu > li {
float : left;
border-right : 0;
}
#topMenuRight .menu > li > a {
display : block;
padding : 2px 10px;
font-size : 15px;
color : #eee;
margin : 0;
}
#topMenuRight .menu > li:not(:last-child) {
border-right : 0 solid #fff;
}
#topMenuRight .fa {
padding-right : 4px;
}
#topMenuRight .menu > li > a, .socialBread a {
color : #fff !important ;
}

@asmecher @anupent