mirror of
https://github.com/Nighthawk42/mmd-to-vrm.git
synced 2026-08-30 08:32:27 +00:00
104 lines
1.9 KiB
CSS
104 lines
1.9 KiB
CSS
/* Reset some elements */
|
|
body, h1, h2, h3, p, ul, ol, pre {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
body {
|
|
font-family: 'Open Sans', sans-serif;
|
|
line-height: 1.6;
|
|
background-color: #f8f9fa;
|
|
color: #333;
|
|
padding: 20px;
|
|
}
|
|
a {
|
|
color: #007bff;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.container {
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
background-color: #fff;
|
|
padding: 30px;
|
|
border: 1px solid #e5e5e5;
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
}
|
|
header {
|
|
border-bottom: 1px solid #e5e5e5;
|
|
margin-bottom: 20px;
|
|
padding-bottom: 10px;
|
|
}
|
|
header h1 {
|
|
font-size: 2.2em;
|
|
margin-bottom: 5px;
|
|
}
|
|
nav {
|
|
margin-top: 10px;
|
|
font-size: 0.9em;
|
|
}
|
|
nav a {
|
|
margin-right: 15px;
|
|
}
|
|
h2 {
|
|
font-size: 1.8em;
|
|
margin: 20px 0 10px;
|
|
}
|
|
h3 {
|
|
font-size: 1.4em;
|
|
margin: 15px 0 8px;
|
|
}
|
|
p, li {
|
|
margin-bottom: 10px;
|
|
}
|
|
ul, ol {
|
|
margin-left: 20px;
|
|
margin-bottom: 15px;
|
|
}
|
|
pre {
|
|
background: #f1f1f1;
|
|
padding: 10px;
|
|
overflow-x: auto;
|
|
}
|
|
.reminder {
|
|
border-left: 4px solid #ffc107;
|
|
background: #fff3cd;
|
|
padding: 10px 15px;
|
|
margin: 20px 0;
|
|
}
|
|
.screenshot {
|
|
display: block;
|
|
margin: 10px 0;
|
|
max-width: 100%;
|
|
border: 1px solid #ddd;
|
|
padding: 5px;
|
|
background: #fafafa;
|
|
}
|
|
.step {
|
|
margin-bottom: 20px;
|
|
}
|
|
footer {
|
|
margin-top: 30px;
|
|
border-top: 1px solid #e5e5e5;
|
|
padding-top: 15px;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
/* Video container styles */
|
|
.video-container {
|
|
display: none; /* hidden by default */
|
|
margin: 10px 0;
|
|
}
|
|
.toggle-btn {
|
|
background-color: #007bff;
|
|
color: #fff;
|
|
border: none;
|
|
padding: 8px 12px;
|
|
cursor: pointer;
|
|
font-size: 0.9em;
|
|
}
|
|
.toggle-btn:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|