generated from Skynet/deploy_user
This commit is contained in:
parent
f4d0e303a2
commit
a43606b7ec
2 changed files with 44 additions and 3 deletions
|
@ -5,9 +5,11 @@
|
||||||
<title>Main Page</title>
|
<title>Main Page</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="Entry">
|
<div id="entry">
|
||||||
<h1>Hello World!</h1>
|
<h2>Entry 1</h2>
|
||||||
<h2>All hail Skynet!!</h2>
|
<p>
|
||||||
|
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
39
src/style.css
Normal file
39
src/style.css
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
:root {
|
||||||
|
/* Colors */
|
||||||
|
--main-blue: #29527a; /* Muted blue */
|
||||||
|
--main-grey: #2e2e2e; /* Dark grey */
|
||||||
|
--main-black: #101010; /* Jet black */
|
||||||
|
--main-white: #ffffff; /* Pure white */
|
||||||
|
|
||||||
|
--link-color: #58a6ff; /* Soft blue for links */
|
||||||
|
--link-hover: #36d399; /* Green accent on hover */
|
||||||
|
--link-click: #ffdb4d; /* Yellow accent on click */
|
||||||
|
|
||||||
|
/* Typography */
|
||||||
|
--font-family-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
||||||
|
--font-size-base: 16px;
|
||||||
|
--font-size-small: 14px;
|
||||||
|
--line-height: 1.6;
|
||||||
|
|
||||||
|
/* Spacing */
|
||||||
|
--spacing-base: 1rem;
|
||||||
|
--spacing-large: 2rem;
|
||||||
|
--border-radius: 0.4rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
html, body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
font-family: var(--font-family-sans);
|
||||||
|
font-size: var(--font-size-base);
|
||||||
|
line-height: var(--line-height);
|
||||||
|
color: var(--main-black);
|
||||||
|
background-color: var(--main-white);
|
||||||
|
scroll-behavior: smooth;
|
||||||
|
}
|
||||||
|
|
||||||
|
#Entry{
|
||||||
|
margin: auto;
|
||||||
|
border: 1px blueviolet;
|
||||||
|
padding: 1px;
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue