Skip to content

Instantly share code, notes, and snippets.

View post5078's full-sized avatar

post5078

  • Joined Oct 3, 2025
View GitHub Profile
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>Study RPG</title>
<style>
body { font-family: sans-serif; text-align: center; background: #111; color: #eee; margin:0; }
h1 { margin: 10px 0; }
#status { padding:10px; border-bottom:2px solid #333; }
#battlefield { display:flex; justify-content:space-between; align-items:center; height:200px; margin:20px; }
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>Study RPG</title>
<style>
body { font-family: sans-serif; text-align: center; background: #111; color: #eee; }
button { padding: 15px; margin: 10px; font-size: 18px; border-radius: 10px; border: none; }
#status, #log { margin: 20px; padding: 10px; border: 2px solid #444; border-radius: 10px; background: #222; }
#log { height: 200px; overflow-y: auto; text-align: left; font-size: 14px; }
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Study RPG — 강화판</title>
<meta name="theme-color" content="#0b6cff"/>
<style>
/* 기본 레이아웃 & 모바일 최적화 */
:root{--bg:#f6fbff;--card:#fff;--accent:#0b6cff;--muted:#6b7786}