56 lines
860 B
CSS
56 lines
860 B
CSS
html {
|
|
background-color: #222;
|
|
color: #eee;
|
|
font-size: 130%;
|
|
text-align: center;
|
|
padding: 75px;
|
|
font-family: "Segoe UI", Tahoma, sans-serif;
|
|
}
|
|
|
|
html > img {
|
|
margin-bottom: 75px;
|
|
}
|
|
|
|
button.un-suspend {
|
|
border: 2px solid #eee;
|
|
outline: none;
|
|
background-color: #eee;
|
|
color: #222;
|
|
height: 60px;
|
|
padding: 0 30px;
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
margin: 45px;
|
|
cursor: pointer;
|
|
}
|
|
button.un-suspend:hover {
|
|
background-color: #222;
|
|
border-color: #eee;
|
|
color: #eee;
|
|
}
|
|
#url {
|
|
color: #eee !important;
|
|
}
|
|
|
|
a {
|
|
color: #fcba03;
|
|
}
|
|
#donate-area {
|
|
position: absolute;
|
|
bottom: 100px;
|
|
font-weight: 200;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: calc(100% - 150px);
|
|
}
|
|
#donate-area > h2 {
|
|
font-size: 250%;
|
|
font-weight: 200;
|
|
}
|
|
#donate-area > h3 {
|
|
font-weight: 200;
|
|
}
|
|
#donate-area > h3 > a {
|
|
font-weight: 600;
|
|
}
|