EndeavourOS-Web/style.css

110 lines
1.4 KiB
CSS
Raw Normal View History

2024-04-16 13:18:19 +00:00
/* EOS - Welcome*/
.welcome {
/*background: url("image/background.webp");*/
min-height: calc(100vh - 70px);
background-size: cover;
/*background-position: center;*/
text-align: center;
}
h2 {
color: #734f96;
margin-top: 50px;
margin-bottom: 50px;
}
a {
color: #734f96;
margin-top: 50px;
margin-bottom: 50px;
}
2024-04-16 13:18:19 +00:00
2024-08-21 18:30:11 +00:00
h4 {
color: #734f96;
margin-top: 50px;
margin-bottom: 50px;
}
.text {
color: #734f96;
margin-top: 50px;
margin-bottom: 50px;
}
2024-04-16 13:18:19 +00:00
p {
2024-04-16 16:34:34 +00:00
margin: 10px;
2024-04-16 13:18:19 +00:00
}
.p {
text-align: center;
}
/* About sekce */
.about-section {
margin: 45px 0;
}
.about-section-wrapper {
width: 65%;
margin: 0 auto;
display: flex;
gap: 20px;
}
.about-text {
flex: 1;
}
.about-img {
flex: 1;
}
img {
width: 100%;
height: 100%;
object-fit: cover;
}
@media (max-width: 768px) {
.about-section-wrapper {
flex-direction: column;
width: 90%;
margin: 0 auto;
}
.about-text {
text-align: left;
}
.about-img {
text-align: center;
}
.about-text-p {
padding-top: 15px;
}
}
footer {
text-align: center;
2024-04-19 21:02:56 +00:00
margin-top: 20px;
margin-bottom: 20px;
2024-04-16 13:18:19 +00:00
}
/* Go to go */
#scrollToTopBtn {
display: none;
position: fixed;
bottom: 20px;
right: 20px;
/*butoon přes obsah*/
z-index: 99;
outline: none;
cursor: pointer;
padding: 15px;
border-radius: 50%;
background-color: transparent;
}