Upload files to "src"
Some checks failed
On_Push / build (push) Has been cancelled

This commit is contained in:
valeriiovich 2025-02-17 13:20:49 +00:00
parent f4d0e303a2
commit a43606b7ec
2 changed files with 44 additions and 3 deletions

View file

@ -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
View 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;
}