Skip to content

Commit

Permalink
automated
Browse files Browse the repository at this point in the history
  • Loading branch information
tsotneforester committed Apr 14, 2024
1 parent 68c91ad commit 3a3b9fe
Show file tree
Hide file tree
Showing 9 changed files with 94 additions and 21 deletions.
68 changes: 68 additions & 0 deletions 02_progress_bar/css/root.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
*,
::before,
::after {
padding: 0;
margin: 0;
box-sizing: border-box;
}

:focus,
:active {
outline: none;
}

a:link,
a:visited,
a:focus,
a:hover,
a:active {
text-decoration: none;
outline: none;
}

input,
button,
textarea {
font-family: inherit;
}

input::-ms-clear {
display: none;
}

button {
cursor: pointer;
border: none;
}

button::-moz-focus-inner {
padding: 0;
border: 0;
}

img {
max-width: 100%;
display: block;
}

ul li {
list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
font-size: inherit;
font-weight: 400;
margin: 0;
padding: 0;
}

pre {
box-sizing: border-box;
margin: 0;
}
21 changes: 4 additions & 17 deletions 02_progress_bar/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -67,24 +67,14 @@ pre {
margin: 0;
}

#wrapper {
min-height: 100%;
max-width: 1440px;
margin: 0 auto;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
border: none;
}

body {
min-height: 100vh;
display: flex;
flex-direction: column;
flex-flow: column nowrap;
justify-content: center;
align-items: center;
font-family: "Nunito", sans-serif;
background-color: #b8c6db;
}

.progress-box {
Expand All @@ -94,7 +84,7 @@ body {
border-radius: 8px;
background-color: transparent;
display: flex;
flex-direction: row;
flex-flow: row nowrap;
justify-content: space-between;
align-items: center;
max-width: 620px;
Expand All @@ -117,7 +107,7 @@ body {
border-radius: 50%;
background-color: white;
display: flex;
flex-direction: row;
flex-flow: row nowrap;
justify-content: center;
align-items: center;
border: 3px #8f5566 solid;
Expand Down Expand Up @@ -153,9 +143,6 @@ body {

.progress-controls .btn {
font-size: 24px;
color: white;
font-weight: 400;
text-align: center;
background-color: #383838;
color: #fff;
border: 0;
Expand Down
1 change: 0 additions & 1 deletion 17_mytube/css/style.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap");
*,
::before,
::after {
Expand Down
Binary file added 17_mytube/favicon/192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 17_mytube/favicon/512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 17_mytube/favicon/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added 17_mytube/favicon/favicon.ico
Binary file not shown.
19 changes: 19 additions & 0 deletions 17_mytube/favicon/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "GPXcript",
"short_name": "GPXcript",
"icons": [
{
"src": "./192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "./512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
6 changes: 3 additions & 3 deletions 17_mytube/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="./favicon/favicon.ico" sizes="32x32" />
<link rel="apple-touch-icon" href="./favicon/apple-touch-icon.png" />
<link rel="manifest" href="./favicon/site.webmanifest" />
<title>Mytube</title>
<meta name="description" content="Code anything, anywhere, anytime" />
<link rel="shortcut icon" type="image/x-icon" href="https://gpx.ge/root/img/infinite.png" />

<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://gpx.ge/" />
Expand Down

0 comments on commit 3a3b9fe

Please sign in to comment.