Skip to content

Commit

Permalink
V1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cletqui committed Nov 12, 2023
1 parent a8a0c2b commit 33aae8f
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 327 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
# tide
# tide

TODO:

- Implement search functionality (dropdown selection, nearest harbour)
- Display more data on screen (tide high, coeff)
- Handle errors graphically
- Add options in header
9 changes: 8 additions & 1 deletion css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ header {
display: flex;
flex-direction: row;
align-items: center;
justify-content: right;
justify-content: center;
text-align: right;
color: #f4f4f4;
color: var(--text-color);
Expand All @@ -80,6 +80,13 @@ header {
padding-right: 2%;
}

header input[type="text"] {
float: right;
border: none;
font-size: 2vmax;
height: 3vmax;
}

/* Main */

main {
Expand Down
4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
</head>

<body>
<header id="header" class="menu-hidden"></header>
<header id="header" class="menu-hidden">
<input type="text" placeholder="Roscoff" />
</header>

<main>
<div id="clock" class="clock">
Expand Down
Loading

0 comments on commit 33aae8f

Please sign in to comment.