v2 base page #1

Merged
lucielle merged 3 commits from v2 into main 2026-05-28 03:06:44 +00:00
3 changed files with 49 additions and 0 deletions
Showing only changes of commit 2077195d2d - Show all commits

33
assets/css/global.css Normal file
View File

@@ -0,0 +1,33 @@
:root {
--bg-color: #302050;
--outline-color: #6040A0;
--text-color: white;
color: var(--text-color);
background-color: var(--bg-color);
}
body {
margin: 0;
padding: 0;
display: flex;
height: 100dvh;
width: 100dvw;
align-items: center;
justify-content: center;
}
main {
display: flex;
padding: 16px;
gap: 8px;
outline: 4px var(--outline-color) solid;
flex-direction: column;
}
main > span {
font-size: 32px;
font-family: sans-serif;
text-align: center;
}

0
assets/css/index.css Normal file
View File

16
index.html Normal file
View File

@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Main - Lucielle's Page</title>
<link rel="stylesheet" href="assets/css/global.css">
<link rel="stylesheet" href="assets/css/index.css">
</head>
<body>
<main>
<img src="favicon.ico" alt="Website Logo" width="256px" height="256px">
<span>Lucielle</span>
</main>
</body>
</html>