malware-generator/styles.css

130 lines
2.4 KiB
CSS

@font-face {
font-family: "Open Sans";
src: url("/fonts/OpenSans-Regular.woff2") format("woff2"), url("/fonts/OpenSans-Regular.woff") format("woff");
}
@font-face {
font-family: "Open Sans";
src: url("/fonts/OpenSans-Bold.woff2") format("woff2"), url("/fonts/OpenSans-Bold.woff") format("woff");
font-weight: bold;
}
@font-face {
font-family: "Open Sans";
src: url("/fonts/OpenSans-Italic.woff2") format("woff2"), url("/fonts/OpenSans-Italic.woff") format("woff");
font-style: italic;
}
@font-face {
font-family: "Open Sans";
src: url("/fonts/OpenSans-BoldItalic.woff2") format("woff2"), url("/fonts/OpenSans-BoldItalic.woff") format("woff");
font-weight: bold;
font-style: italic;
}
body {
background-image: url("/images/background.png");
font-family: "Open Sans", sans-serif;
}
.modal-background {
position: fixed;
width: 100%;
height: 100%;
object-fit: cover;
}
div.warning {
display: none;
position: fixed;
background: rgba(0, 0, 0, 0.6);
width: 100%;
height: 100%;
z-index: 69;
top: 0;
left: 0;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.title h1, .title p {
display: inline;
vertical-align: bottom;
line-height: 100%;
}
.description {
text-align: center;
}
.shadow {
color: #FFF;
text-shadow: #000 6px 3px 8px;
}
.inline {
width: 30px;
padding: 0 8px 0 8px;
}
div.warning-modal {
position: fixed;
display: flex;
background: rgba(0, 0, 0, 0.6);
width: 100%;
height: 100%;
top: 0;
left: 0;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
@media (min-width: 1700px) and (min-height: 600px) {
div.warning-modal {
transform: translate(-50%, -50%) scale(2);
transform-origin: 0 0 0;
}
}
a.blue {
color: #4287f5;
}
.thanks {
color: #FF0000
}
.links {
display: flex;
max-width: 70%;
flex-flow: row wrap;
align-items: space-around;
justify-content: space-around;
padding: 20px;
gap: 20px;
}
.dlink {
display: flex;
width: 30%;
flex-direction: column;
justify-content: center;
align-items: center;
}
.dlink img {
max-width: 400px;
}