Skip to content

Commit

Permalink
Build source files
Browse files Browse the repository at this point in the history
  • Loading branch information
pratikborsadiya committed Oct 13, 2019
1 parent e5d4af0 commit f7edc75
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2057,6 +2057,11 @@ pre code {
opacity: 1;
}

.form-control::-moz-placeholder {
color: #6c757d;
opacity: 1;
}

.form-control:-ms-input-placeholder {
color: #6c757d;
opacity: 1;
Expand Down Expand Up @@ -5114,8 +5119,10 @@ input[type="button"].btn-block {
@media (min-width: 576px) {
.card-columns {
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
-webkit-column-gap: 1.25rem;
-moz-column-gap: 1.25rem;
column-gap: 1.25rem;
orphans: 1;
widows: 1;
Expand Down Expand Up @@ -14812,6 +14819,11 @@ be a descendant of the grid when it is being dragged.
border-bottom: 6px solid #be2626;
}

::-moz-selection {
color: #FFF;
background-color: #00635a;
}

::selection {
color: #FFF;
background-color: #00635a;
Expand Down Expand Up @@ -15050,6 +15062,10 @@ be a descendant of the grid when it is being dragged.
color: rgba(0, 0, 0, 0.4);
}

.app-search__input::-moz-placeholder {
color: rgba(0, 0, 0, 0.4);
}

.app-search__input:-ms-input-placeholder {
color: rgba(0, 0, 0, 0.4);
}
Expand Down

0 comments on commit f7edc75

Please sign in to comment.