Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix To-do box position #158

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"liveServer.settings.port": 5501
"liveServer.settings.port": 5502
}
4 changes: 3 additions & 1 deletion about.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
justify-content: center;
position: relative;
left: 20vw;
color: ghostwhite;
}

.contents {
Expand All @@ -92,11 +93,12 @@
position: relative;
left: 20vw;
margin-right: 50vw;
color: snow;
}

.linkhome {
text-decoration: none;
color: black;
color: rgb(188, 132, 132);
}
</style>
</head>
Expand Down
5 changes: 4 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@

<style>
.carousel {
height: 40em;
height: 40rem;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
}

.footer-basic {
Expand Down
8 changes: 4 additions & 4 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}

body {
background-image: linear-gradient(to right top, #06002a, #08164c, #0d2672, #11369a, #1148c4, #0063da, #007eed, #0098ff, #00b7ff, #00d3ff, #00ebf1, #00ffd4);
background: linear-gradient(to right, #000000, #434343);
display: flex;
flex-direction: column;
justify-content: center;
Expand All @@ -23,7 +23,7 @@ body {

nav {
height: 15vh;
background-color: #152932;
background-color: #000000;
}

.sticky {
Expand Down Expand Up @@ -375,11 +375,11 @@ nav {
}

::-webkit-scrollbar-track {
background-color: aqua;
background-color:rgb(255, 255, 255);
}

::-webkit-scrollbar-thumb {
background-color: rgb(58 58 173);
background-color: rgb(158, 158, 162);
background-clip: content-box;
border: 2px solid transparent;
border-radius: 15px;
Expand Down
12 changes: 7 additions & 5 deletions to-doLISt/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ body{

h1{
font-family: 'Poppins', sans-serif;
color: #500050;
color: #000000;
}

.container{
margin-left: 800px;
margin-top: 80px;
margin-left: 700px;
/* margin-top: 50px; */
text-align: center;
width: 100%;
max-width: 500px;
Expand All @@ -27,6 +27,8 @@ h1{
/* background:linear-gradient(90deg ,#ec2c2c,#d29e62,#e9993d ); */
background-color: white;
box-shadow: 10px 10px 19px #241f1f;
padding-bottom: 50px;
align-items: center;
}

#line{
Expand Down Expand Up @@ -65,15 +67,15 @@ input[type='text']{
font-size: 1.2rem;
margin-left: 50px;
color: rgb(0, 0, 0);
background-color: #ffffff;
background-color: #d8b8f9;
border-bottom: 1px solid #c3aeaea1;
cursor:pointer;
display: flex;
float: left;
}
input[type='text']:disabled{
cursor:default;
color: black;
color: rgb(0, 0, 0);
background-color: #c3aeaea1;

}
Expand Down