This repository has been archived on 2025-11-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
kbm-html/assets/seiten/css/index.css
Fabian Märker 741332a2de Update index.css
2021-12-03 11:41:05 +01:00

60 lines
1.0 KiB
CSS

#up-btn {
position: fixed;
text-align: center;
bottom: 1.2rem;
right: 18.5%;
left: 95%;
max-width: 75px;
width: 100%;
font-size: 1.3rem;
border: rgb(138,43,226);
background-color: #808080;
color: #232323;
padding: .5px;
border-radius: 4px;
text-decoration: none;
}
#down-btn:hover,
#up-btn:hover {
background-color: #232323;
cursor: pointer;
color: #808080;
transition: all 0.75s;
}
#down-btn {
color: #121212;
background-color: #808080;
text-align: center;
position: absolute;
left: 50%;
bottom: 1rem;
transform: translate(-50%, -50%);
max-width: 75px;
width: 100%;
font-size: 1.3rem;
padding: .5px;
border-radius: 4px;
text-decoration: none;
}
#content {
width: 100%;
height: 100%;
z-index: -1;
position: absolute;
top: 100%;
left: 0;
background-color: #121212;
}
.headline {
text-align: center;
position: absolute;
left: 50%;
top: 8rem;
transform: translate(-50%, -50%);
}