UNPKG

slidev-theme-exam-prep

Version:

watabeggが塾の集団授業で使うためのSlidevテーマ

158 lines (134 loc) 3.35 kB
/* Google Fonts Import */ @import url('https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@100;200;300;400;500;600;700;800;900&display=swap'); /* Global Variables */ :root { --slidev-theme-primary: #4CAF50; --slidev-theme-background: #FFFFFF; --slidev-theme-text: #333333; --slidev-theme-text-secondary: #666666; --slidev-theme-border: #E0E0E0; --slidev-theme-shadow: rgba(0, 0, 0, 0.1); /* Font settings */ --slidev-font-family: 'M PLUS 2', 'Roboto', sans-serif; --slidev-font-mono: 'Fira Code', 'Courier New', monospace; --slidev-font-size-base: 24px; --slidev-line-height: 1.4; } /* Global Layout Styles */ .slidev-layout { background: var(--slidev-theme-background); font-family: var(--slidev-font-family); font-size: var(--slidev-font-size-base); line-height: var(--slidev-line-height); color: var(--slidev-theme-text); /* Common spacing */ padding: 2rem; /* Ensure consistent typography */ h1, h2, h3, h4, h5, h6 { font-family: var(--slidev-font-family); font-weight: 600; color: var(--slidev-theme-text); } h1 { font-size: 2.5rem; margin-bottom: 1.5rem; border-bottom: 3px solid var(--slidev-theme-primary); padding-bottom: 0.5rem; } h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--slidev-theme-primary); } h3 { font-size: 1.5rem; margin-bottom: 0.75rem; } /* Lists */ ul, ol { margin: 1rem 0; padding-left: 2rem; } li { margin: 0.5rem 0; } /* Code */ code { font-family: var(--slidev-font-mono); background: #f5f5f5; padding: 0.2rem 0.4rem; border-radius: 0.25rem; font-size: 0.9em; } pre { font-family: var(--slidev-font-mono); background: #f8f8f8; padding: 1rem; border-radius: 0.5rem; overflow-x: auto; border-left: 4px solid var(--slidev-theme-primary); } /* Links */ a { color: var(--slidev-theme-primary); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; } a:hover { border-bottom-color: var(--slidev-theme-primary); } } .slidev-layout:not(.cover, .image) { position: relative; padding-bottom: 4rem; } .slidev-layout:not(.cover, .image)::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3rem; border-top: 1px solid var(--slidev-theme-border); background: var(--slidev-theme-background); } /* Global header positioning for non-cover layouts */ .slidev-layout:not(.cover, .image) h1:first-child { position: fixed; top: 2rem; left: 2rem; right: 2rem; margin: 0; padding-bottom: 0.5rem; background: var(--slidev-theme-background); z-index: 10; border-bottom: 3px solid var(--slidev-theme-primary); } .slidev-layout:not(.cover) { padding-top: 6rem; /* Space for fixed header */ } /* Animation utilities */ .slide-enter-active, .slide-leave-active { transition: all 0.3s ease; } .slide-enter-from { opacity: 0; transform: translateX(20px); } .slide-leave-to { opacity: 0; transform: translateX(-20px); } /* Utility classes */ .text-highlight { background: linear-gradient(transparent 60%, #ffeb3b 60%); padding: 0 0.2rem; } .card { background: white; border-radius: 0.5rem; padding: 1.5rem; border: 1px solid var(--slidev-theme-border); }