styles.css
This commit is contained in:
parent
431ec6e44a
commit
f403a7018b
1 changed files with 19 additions and 6 deletions
25
styles.css
25
styles.css
|
|
@ -1,7 +1,7 @@
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-family: Arial, sans-serif;
|
font-family: Arial, sans-serif;
|
||||||
background: linear-gradient(135deg, rgb(29, 29, 30), rgb(255, 255, 255));
|
background: linear-gradient(135deg, rgb(87, 87, 255), rgb(255, 255, 255));
|
||||||
color: #333;
|
color: #333;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
@ -52,9 +52,22 @@ main {
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
#backToTop {
|
||||||
text-align: center;
|
position: fixed;
|
||||||
padding: 15px;
|
bottom: 20px;
|
||||||
background: rgba(255, 255, 255, 0.3);
|
right: 20px;
|
||||||
border-top: 1px solid #ddd;
|
padding: 10px 20px;
|
||||||
|
background-color: #4a5b6e;
|
||||||
|
color: white;
|
||||||
|
border: none;
|
||||||
|
border-radius: 10px;
|
||||||
|
cursor: pointer;
|
||||||
|
display: none;
|
||||||
|
opacity: 0.8;
|
||||||
|
transition: opacity 0.3s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#backToTop:hover {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue