Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Vital-Vuillaume committed Jul 15, 2023
1 parent 890f19c commit 8ad6e8b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 24 deletions.
39 changes: 18 additions & 21 deletions Time-Converter.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ body {
text-align: center;
margin: 0;
color: white;
overflow: hidden;
opacity: 0;
transform: translateY(-200px);
animation: apparition 2s ease-out forwards;
Expand All @@ -30,7 +29,6 @@ body {
transform: none;

}

}

.title {
Expand Down Expand Up @@ -196,6 +194,12 @@ body {

}

footer {

height: 60px;

}

.fake-copyright {

font-size: 0.9em;
Expand All @@ -206,7 +210,8 @@ body {
padding: 14px 30px;
position: relative;
right: 250px;
bottom: 10px;
top: 5px;
margin: 0px;

}

Expand All @@ -230,22 +235,13 @@ body {

}

@media screen and (max-width: 1095px) {

body{

overflow: auto;

}
}

@media screen and (max-width: 768px) {

body {

overflow: hidden;

}
}

.title {

Expand Down Expand Up @@ -284,11 +280,11 @@ body {
font-size: 0.9em;
border-radius: 10px;
padding: 0 0;
bottom: 45px;
right: 32.5%;
height: 50px;
width: 30%;
padding-top: 1.9%;
padding-top: 13px;
top: -31px;

}
}
Expand All @@ -310,7 +306,7 @@ body {

.fake-copyright {

bottom: 25px;
top: -10px;

}
}
Expand Down Expand Up @@ -338,10 +334,10 @@ body {

.fake-copyright {

bottom: 15px;
width: 34%;
right: 30.5%;
padding-top: 13px;
top: -1px;

}
}
Expand Down Expand Up @@ -375,7 +371,7 @@ body {

.fake-copyright {

bottom: 25px;
top: -12px;
padding-top: 2.25%;
width: 37%;
right: 29%;
Expand Down Expand Up @@ -409,6 +405,7 @@ body {

width: 40%;
right: 28%;
padding-top: 13px;

}
}
Expand Down Expand Up @@ -537,11 +534,11 @@ body {
.fake-copyright {

bottom: 0px;
top: 10px;
right: 19%;
height: 40px;
width: 52%;
padding-top: 2%;
padding-top: 8px;
top: 24px;

}
}
Expand Down Expand Up @@ -570,8 +567,8 @@ body {
.fake-copyright {

font-size: 0.8em;
padding-top: 2.25%;
height: 37px;
top: 23px;

}
}
Expand Down
4 changes: 1 addition & 3 deletions Time-Converter.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h1 class="title">TIME-CONVERTER</h1>
<main>
<div class="container">
<div class="form-control">
<input id="day-input" class="input input-alt" placeholder="Write a number of days..." type="number" oninput="limitNumberLength(this, 9)">
<input id="day-input" class="input input-alt" placeholder="Write a number of days..." type="number" pattern="[0-9]*" oninput="limitNumberLength(this, 9)">
<span class="input-border input-border-alt"></span>
</div>

Expand All @@ -36,9 +36,7 @@ <h1 class="title">TIME-CONVERTER</h1>
</main>

<footer>
<div>
<p class="fake-copyright">ⓒ 2023 - Vital production</p>
</div>
</footer>
</body>
</html>

0 comments on commit 8ad6e8b

Please sign in to comment.