Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Louis-LJ committed Jun 1, 2024
1 parent 0b2e092 commit 1793b68
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
26 changes: 23 additions & 3 deletions Hiking/Style.css
Original file line number Diff line number Diff line change
@@ -1,30 +1,50 @@
/* || General setup */

:root {
--text: #2a2a2a;
--bg: #dddddd;
}

body {
font-family: "Source Sans Pro", sans-serif;
background-color: var(--bg);
color: var(--text);
}

@media (prefers-color-scheme: dark) {
:root {
--text: #dddddd;
--bg: #2a2a2a;
}
}

html, body {
margin: 0;
padding: 0;
}

html {
font-size: 10px;
background-color: #dddddd ;
background-color: var(--bg);
color: var(--text);

}

body {
width: 90%;
margin: 0 auto;

}

/* || typography */

h1, h2, h3 {
font-family: 'Segoe UI', sans-serif;
color: #2a2a2a;
color: var(--text);
}

p, input, li, span {
font-family: 'Segoe UI', sans-serif;
color: #2a2a2a;
}

h1 {
Expand Down
3 changes: 1 addition & 2 deletions Hiking/accueil.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
<link href="https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300%7CSonsie+One" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="/Hiking/Style.css">
<meta name="viewport" content="width=device-width,initial-scale=0.85" />
<meta name="theme-color" content="#dddddd">
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#0000ff">
<meta http-equiv="X-UA-Compatible" content="ie=edge" />

</head>

Expand Down

0 comments on commit 1793b68

Please sign in to comment.