Skip to content

Commit

Permalink
fix: removed unused css
Browse files Browse the repository at this point in the history
  • Loading branch information
frankpagan committed Jan 5, 2023
1 parent 916362f commit 7a51965
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 41 deletions.
4 changes: 0 additions & 4 deletions src/css/badge.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,13 @@
.cocreate-badge{
display:inline-block;
background-color: #777;
/*border-radius: 5px;*/
color: #fff;
font-size: 10px;
font-weight: 400;
/*line-height: 1;*/
height:fit-content;
min-width: fit-content;
/*opacity: 0.6;*/
padding: 0.1em 0.4em;
text-align: center;
/*bottom: 2px;*/
transition: opacity 0.3s linear 0s;
-webkit-transition: opacity 0.3s linear 0s;
-ms-transition: opacity 0.3s linear 0s;
Expand Down
4 changes: 0 additions & 4 deletions src/css/box-shadow.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.card\:hover {
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.box-shadow-200 {
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
Expand Down
28 changes: 1 addition & 27 deletions src/css/button.css
Original file line number Diff line number Diff line change
@@ -1,30 +1,3 @@
/* button {
background: #3790ff;
padding: 10px;
color: #fff;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
font-size: 24px;
font-size: 1.5rem;
box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.4);
-webkit-transition: all .2s ease-out;
transition: all .2s ease-out;
cursor: pointer;
border-width: inherit;
outline: none;
} */

.grow-hover:hover {
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
Expand All @@ -40,6 +13,7 @@
button {
cursor: pointer;
}

button.outline {
display: inline;
position: relative;
Expand Down
6 changes: 5 additions & 1 deletion src/css/card.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
/* CoCreate card */
.card {
.card {
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.card\:hover {
box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}
2 changes: 2 additions & 0 deletions src/css/checkbox.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
/**
check box
**/

.checkbox {
position:relative;
padding-left: 35px;
cursor: pointer;
font-size: 20px;
min-height: 20px;
}

.checkbox input[type="checkbox"] {
position: absolute;
opacity: 0;
Expand Down
1 change: 0 additions & 1 deletion src/css/flip-item.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
}

.flip-container > .flip-item.flipped {transform: rotateY(180deg);}

.flip-container.active > .flip-item {transform: rotateY(180deg);}
.flip-container.active > .flip-item.flipped {transform: rotateY(0deg);}

8 changes: 4 additions & 4 deletions src/css/scroll.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/*width: 10px!important;*/
/*height:10px!important;*/
}
::-webkit-scrollbar:hover {
/*width: 10px!important;*/
/*height:10px!important;*/
}
/* ::-webkit-scrollbar:hover {
width: 10px!important;
height:10px!important;
} */

0 comments on commit 7a51965

Please sign in to comment.