1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2024-11-21 16:13:55 +00:00
The-Modding-Tree/css/popup.css

52 lines
786 B
CSS
Raw Normal View History

2020-12-07 03:56:37 +00:00
.popup {
border: 4px solid;
2020-12-07 05:40:30 +00:00
border-radius: 7px;
2020-12-07 03:56:37 +00:00
width: 300px;
min-height: 60px;
color: #000000;
display: block;
margin-top: 30px;
padding-top: 15px;
padding-bottom: 15px;
2020-12-07 05:40:30 +00:00
border-color: rgba(0, 0, 0, 0.25);
2020-12-07 03:56:37 +00:00
}
.popup-container {
position: absolute;
z-index: 9999999999999999999999999999999999;
right: 30px;
width: 300px;
}
.achievement-popup {
background: #7182BC;
}
2020-12-07 05:40:30 +00:00
.milestone-popup {
2020-12-07 03:56:37 +00:00
background: #D1C23C;
}
.fade-enter-active, .fade-leave-active {
transition: opacity .3s
}
.fade-transition {
transition: opacity .3s
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
opacity: 0
}
.redtext {
color: red;
}
2021-05-14 01:40:51 +00:00
.particle {
2021-05-14 05:38:17 +00:00
background-color: transparent;
2021-05-14 01:40:51 +00:00
display: block;
position:absolute;
z-index: 99999;
background-size:contain;
2021-05-14 01:40:51 +00:00
}