styles.css for incrtuctions.html

This commit is contained in:
konk22 2024-08-04 23:47:43 +03:00 committed by GitHub
parent f3c3f2b398
commit 780a33c55b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,32 @@
/* styles.css */
/* Styles for the scroll-to-top button */
.scroll-to-top {
position: fixed;
bottom: 1em;
right: 1em;
background-color: #3273dc;
color: white;
border: none;
border-radius: 50%;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
cursor: pointer;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
transition: background-color 0.3s;
}
.dynamic-width-block {
width: 50%;
margin-left: 0;
padding: 20px;
box-sizing: border-box;
}