mirror of
https://github.com/ZZZure/ZZZ-Plugin.git
synced 2025-12-16 21:27:47 +00:00
48 lines
919 B
SCSS
48 lines
919 B
SCSS
@charset "UTF-8";
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'zzz', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
|
|
Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
transform-origin: 0 0;
|
|
font-size: 24px;
|
|
width: 840px;
|
|
}
|
|
|
|
.container {
|
|
background: url('../images/bg.jpg') no-repeat center center;
|
|
background-size: cover;
|
|
color: white;
|
|
}
|
|
|
|
.copyright {
|
|
font-size: 0.7em;
|
|
color: #797979;
|
|
padding-bottom: 2em;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 0.3em;
|
|
.highlight {
|
|
color: #fff;
|
|
position: relative;
|
|
}
|
|
.with-version {
|
|
padding-right: 1.8em;
|
|
.version {
|
|
// background-color: #3f3f3f;
|
|
padding: 0.1em 0.3em;
|
|
border-radius: 0.2em;
|
|
font-size: 0.8em;
|
|
color: #fff;
|
|
position: absolute;
|
|
top: -0.5em;
|
|
right: -0.5em;
|
|
}
|
|
}
|
|
}
|