1
This commit is contained in:
@@ -0,0 +1,99 @@
|
||||
.gamepopup {
|
||||
flex-grow: 1;
|
||||
align-items: center;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.gamepopup-bg {
|
||||
background-color: rgb(19, 190, 190);
|
||||
border-top-left-radius: 10px;
|
||||
border-top-right-radius: 10px;
|
||||
border-bottom-right-radius: 10px;
|
||||
border-bottom-left-radius: 10px;
|
||||
border-top-width: 2px;
|
||||
border-right-width: 2px;
|
||||
border-bottom-width: 2px;
|
||||
border-left-width: 2px;
|
||||
border-left-color: rgb(255, 255, 255);
|
||||
border-right-color: rgb(255, 255, 255);
|
||||
border-top-color: rgb(255, 255, 255);
|
||||
border-bottom-color: rgb(255, 255, 255);
|
||||
padding-top: 5px;
|
||||
padding-right: 5px;
|
||||
padding-bottom: 5px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.gamepopup-top {
|
||||
background-color: rgb(255, 255, 255);
|
||||
border-top-left-radius: 5px;
|
||||
border-top-right-radius: 5px;
|
||||
border-bottom-right-radius: 5px;
|
||||
border-bottom-left-radius: 5px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.gamepopup-title {
|
||||
-unity-text-align: middle-center;
|
||||
font-size: 32px;
|
||||
margin-top: 0;
|
||||
margin-right: 0;
|
||||
margin-bottom: 0;
|
||||
margin-left: 0;
|
||||
padding-top: 0;
|
||||
padding-right: 0;
|
||||
padding-bottom: 0;
|
||||
padding-left: 0;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
.gamepopup-container {
|
||||
}
|
||||
|
||||
.gamepopup-bottom {
|
||||
height: auto;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
padding-top: 5px;
|
||||
padding-right: 5px;
|
||||
padding-bottom: 5px;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
.gamepopup-button {
|
||||
background-color: rgb(19, 190, 190);
|
||||
margin-top: 0;
|
||||
margin-right: 0;
|
||||
margin-bottom: 0;
|
||||
margin-left: 0;
|
||||
padding-top: 0;
|
||||
padding-right: 0;
|
||||
padding-bottom: 0;
|
||||
padding-left: 0;
|
||||
border-top-width: 1px;
|
||||
border-right-width: 1px;
|
||||
border-bottom-width: 1px;
|
||||
border-left-width: 1px;
|
||||
border-left-color: rgb(255, 255, 255);
|
||||
border-right-color: rgb(255, 255, 255);
|
||||
border-top-color: rgb(255, 255, 255);
|
||||
border-bottom-color: rgb(255, 255, 255);
|
||||
border-top-left-radius: 5px;
|
||||
border-top-right-radius: 5px;
|
||||
border-bottom-right-radius: 5px;
|
||||
border-bottom-left-radius: 5px;
|
||||
height: 30px;
|
||||
width: 80px;
|
||||
color: rgb(255, 255, 255);
|
||||
font-size: 18px;
|
||||
transition-duration: 0.2s;
|
||||
}
|
||||
|
||||
.gamepopup-button:hover {
|
||||
scale: 1.1 1.1;
|
||||
}
|
||||
|
||||
.gamepopup-hide {
|
||||
opacity: 0;
|
||||
display: none;
|
||||
}
|
||||
Reference in New Issue
Block a user