init
This commit is contained in:
commit
2ac10ef930
8
.idea/.gitignore
vendored
Normal file
8
.idea/.gitignore
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
8
.idea/modules.xml
Normal file
8
.idea/modules.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/sessionzero-app-landingpage.iml" filepath="$PROJECT_DIR$/.idea/sessionzero-app-landingpage.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
12
.idea/sessionzero-app-landingpage.iml
Normal file
12
.idea/sessionzero-app-landingpage.iml
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="WEB_MODULE" version="4">
|
||||
<component name="NewModuleRootManager">
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
4
.idea/vcs.xml
Normal file
4
.idea/vcs.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings" defaultProject="true" />
|
||||
</project>
|
BIN
d20_no-bg_medium.png
Normal file
BIN
d20_no-bg_medium.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 41 KiB |
53
index.html
Normal file
53
index.html
Normal file
@ -0,0 +1,53 @@
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>SessionZero</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="page-container">
|
||||
<header>
|
||||
<nav>
|
||||
<div class="nav-content">
|
||||
<a href="#" class="logo-container">
|
||||
<img src="d20_no-bg_medium.png" alt="SessionZero Logo" class="logo-placeholder">
|
||||
<div class="logo-text">SessionZero</div>
|
||||
</a>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<section class="hero">
|
||||
<h1>SessionZero</h1>
|
||||
<p class="tagline">A TTRPG companion that gets out of your way</p>
|
||||
<div class="status-badge">Status: Work in Progress</div>
|
||||
</section>
|
||||
|
||||
<section class="features">
|
||||
<h2>Coming Soon</h2>
|
||||
<div class="feature-grid">
|
||||
<div class="feature-card">
|
||||
<h3>Characters</h3>
|
||||
<p>Simple character system where you decide the details.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<h3>Sessions</h3>
|
||||
<p>Manage your games and players online or at the table.</p>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<h3>System Agnostic</h3>
|
||||
<p>You pick the rules and content, not us.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<p>© 2025 SessionZero. All rights reserved.</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
181
styles.css
Normal file
181
styles.css
Normal file
@ -0,0 +1,181 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
|
||||
|
||||
:root {
|
||||
--background-color: #1a202e; /* Deep navy night */
|
||||
--primary-color: #3a4f6f; /* Rich medium blue */
|
||||
--secondary-color: #2d3f5c; /* Deeper blue */
|
||||
--accent-color: #5b89b3; /* Glowing blue highlight */
|
||||
--text-color: #ffffff; /* Pure white */
|
||||
--heading-color: #c5d5e6; /* Soft sky blue */
|
||||
|
||||
/* UI Specific */
|
||||
--form-background: #222837; /* Slightly lighter background */
|
||||
--text-on-primary: #ffffff; /* White text */
|
||||
--button-text: #ffffff; /* White text */
|
||||
|
||||
/* Neutrals */
|
||||
--neutral-light: #d8e1ea; /* Bright blue-white */
|
||||
--neutral-medium: #8494a7; /* Muted blue-gray */
|
||||
--neutral-dark: #2d364a; /* Deep blue shadow */
|
||||
}
|
||||
|
||||
/* Existing root variables preserved */
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
font-family: "PT Serif", serif;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--background-color);
|
||||
color: var(--text-color);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.page-container {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
header {
|
||||
background-color: var(--background-color);
|
||||
padding: 1rem 2rem;
|
||||
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.nav-content {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.logo-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.logo-placeholder {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.logo-text {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
color: var(--heading-color);
|
||||
}
|
||||
|
||||
|
||||
main {
|
||||
flex: 1;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 2rem;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.hero {
|
||||
text-align: center;
|
||||
padding: 4rem 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 3.5rem;
|
||||
color: var(--heading-color);
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.tagline {
|
||||
font-size: 1.5rem;
|
||||
color: var(--neutral-light);
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.status-badge {
|
||||
display: inline-block;
|
||||
background-color: var(--accent-color);
|
||||
color: var(--button-text);
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 20px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.features {
|
||||
padding: 4rem 0;
|
||||
}
|
||||
|
||||
h2 {
|
||||
text-align: center;
|
||||
color: var(--heading-color);
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
.feature-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.feature-card {
|
||||
background-color: var(--form-background);
|
||||
padding: 2rem;
|
||||
border-radius: 8px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.feature-card h3 {
|
||||
color: var(--heading-color);
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.feature-card p {
|
||||
color: var(--neutral-medium);
|
||||
}
|
||||
|
||||
footer {
|
||||
background-color: var(--secondary-color);
|
||||
color: var(--neutral-medium);
|
||||
padding: 2rem;
|
||||
text-align: center;
|
||||
margin-top: auto;
|
||||
}
|
||||
|
||||
/* Responsive design */
|
||||
@media (max-width: 768px) {
|
||||
.hero {
|
||||
padding: 2rem 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
.tagline {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.feature-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.logo-placeholder {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
|
||||
.logo-text {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user