Compare commits

..

No commits in common. "d9129ab4da3689d6075f40b1db2c48c1c42b7242" and "3f873c410cdb94c8934cb185e41ac7d880b15da7" have entirely different histories.

2 changed files with 9 additions and 2 deletions

View File

@ -182,7 +182,12 @@
bottom: 0; bottom: 0;
right: 0; right: 0;
left: 0; left: 0;
background: #323232; background: linear-gradient(
to top right,
#292929,
#343434,
#292929
);
z-index: -1; z-index: -1;
border-radius: 10px; border-radius: 10px;
} }

View File

@ -89,12 +89,14 @@
font-size: 20px; font-size: 20px;
position: relative; position: relative;
cursor: pointer; cursor: pointer;
border: solid 1px rgba(255, 255, 255, 0);
} }
.popUpMainCardTopClose:hover { .popUpMainCardTopClose:hover {
transition: ease 0.4s; transition: ease 0.4s;
color: rgba(255, 255, 255, 0.75); color: rgba(255, 255, 255, 0.75);
box-shadow: 0 0 8px 0 rgb(0, 0, 0, 0.1); box-shadow: 0 0 8px 0 rgb(0, 0, 0, 0.1);
border: solid 1px rgba(255, 255, 255, 0.1);
} }
.popUpMainCardTopInfo { .popUpMainCardTopInfo {
@ -116,7 +118,7 @@
bottom: 0; bottom: 0;
right: 0; right: 0;
left: 0; left: 0;
background: #323232; background: linear-gradient(to top right, #262626, #292929, #262626);
/*z-index: -1;*/ /*z-index: -1;*/
border-radius: 10px; border-radius: 10px;
} }