multiple configs depending on wether or not we have cert

This commit is contained in:
2025-11-20 21:46:20 +00:00
parent 8c2b99d65f
commit d8aa357414
6 changed files with 78 additions and 24 deletions

View File

@@ -1,13 +1,11 @@
html {
height: 100%;
margin: 0;
}
body {
font-family: "Times New Roman", Times, serif;
display: flexbox;
height: 100%;
width: 100%;
margin: 1vw;
background-image: linear-gradient(to bottom, aqua, blue);
font-family: "Times New Roman", Times, serif;
display: flexbox;
/*background-image: url("../img/background.png");
background-size: cover;*/
@@ -23,3 +21,13 @@ h3,
h4 {
color: black;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
background-color: beige;
}

View File

@@ -13,21 +13,24 @@
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<h1> Welcome </h1>
<div class="container">
<h1> Welcome </h1>
<h2> whoami?</h2>
<p>Hi im Adam</p>
<h2> whoami?</h2>
<p>Hi im Adam</p>
<h2> </h2>
<p>
<!--Sometimes there's this fire that sends shivers down my back.
It'll come when I'm lis-->
<h2> </h2>
<p>
<!--Sometimes there's this fire that sends shivers down my back.
It'll come when I'm lis-->
</p>
</p>
<h2>Shrines</h1>
<a href="shrines/evangelion.html">Evangelion</a>
<a href="shrines/skipskipbenben.html">Skip skip ben ben</a>
<a href="shrines/gto.html">GTO</a>
<h2>Shrines</h1>
<a href="shrines/evangelion.html">Evangelion</a>
<a href="shrines/skipskipbenben.html">Skip skip ben ben</a>
<a href="shrines/gto.html">GTO</a>
</div>
</body>
</html>