Add staging popup

This commit is contained in:
Jai A
2020-06-27 10:29:49 -07:00
parent 8540e09ba7
commit 0900d7c764
3 changed files with 57 additions and 0 deletions

View File

@@ -155,4 +155,48 @@ h1, h2, h3, h4, h5, h6 {
.green {
color: #69E781;
}
.info-popup {
z-index: 10;
position: absolute;
width: 500px;
background-color: var(--content-background);
color: var(--content-text);
border-radius: 5px;
border: 1px solid var(--content-text);
padding: 20px;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
}
.discord-button {
text-decoration: none;
border-radius: 5px;
padding: 5px;
font-weight: bold;
color: white;
background-color: var(--library-color);
margin-left: 50px;
margin-right: 5px;
}
.github-button {
text-decoration: none;
border-radius: 5px;
padding: 5px;
font-weight: bold;
color: white;
background-color: var(--magic-color);
margin-right: 5px;
}
.exit-button {
border-radius: 5px;
padding: 5px;
font-weight: bold;
color: white;
background-color: red;
}