97 lines
1.9 KiB
CSS

@font-face {
font-family: "FZB";
src: url("../../font/FZB.ttf");
}
* {
margin: 0;
font-family: "FZB", serif;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
body {
font-size: 16px;
font-family: "FZB", serif;
transform: scale(1.5);
transform-origin: 0 0;
color: #e1e1e1;
background-color: #1e1e1e;
line-height: 1.5;
}
.container {
width: 536px;
background-size: cover;
background-color: #2c2c2c;
padding: 20px;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.version-card {
background: #3a3a3a;
margin: 15px 10px;
position: relative;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
overflow: hidden;
color: #f0f0f0;
font-size: 16px;
border-radius: 8px;
transition: all 0.3s ease;
}
.version-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.version-card .title {
background: linear-gradient(135deg, #444, #222);
color: #FFBD73;
font-family: "FZB", serif;
padding: 15px 20px;
text-align: left;
font-size: 18px;
font-weight: bold;
border-bottom: 1px solid #555;
}
.version-card .content {
padding: 15px 20px;
font-size: 14px;
background: #2b2b2b;
font-family: "FZB", serif;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}
.version-card ul {
font-size: 14px;
padding-left: 20px;
list-style-type: disc;
}
.version-card ul li {
margin: 8px 0;
line-height: 1.4;
}
.version-card .cmd {
color: #e1c185;
background: rgba(255, 255, 255, 0.1);
display: inline-block;
border-radius: 5px;
padding: 2px 6px;
margin: 1px 2px;
}
.version-card .strong {
color: #67a9e4;
background: rgba(255, 255, 255, 0.1);
display: inline-block;
border-radius: 5px;
padding: 2px 6px;
margin: 1px 2px;
}
.logo {
text-align: center;
font-size: 14px;
color: #e1d7b7;
font-family: 'FZB', serif;
margin-top: 30px;
padding-top: 10px;
border-top: 1px solid #555;
}