EndeavourOS-Web/clanky/style.css

124 lines
1.6 KiB
CSS
Raw Permalink Normal View History

2024-04-16 13:18:19 +00:00
/* About sekce */
.about-section {
2024-08-23 13:23:38 +00:00
margin: 45px 0;
2024-04-16 13:18:19 +00:00
}
.about-section-wrapper {
2024-08-23 13:23:38 +00:00
width: 65%;
margin: 0 auto;
display: flex;
gap: 20px;
2024-04-16 13:18:19 +00:00
}
.about-text {
2024-08-23 13:23:38 +00:00
flex: 1;
2024-04-16 13:18:19 +00:00
}
.about-img {
2024-08-23 13:23:38 +00:00
flex: 1;
2024-04-16 13:18:19 +00:00
}
2024-08-23 13:23:38 +00:00
2024-04-16 13:18:19 +00:00
img {
2024-08-23 13:23:38 +00:00
width: 100%;
height: 100%;
object-fit: cover;
2024-04-16 13:18:19 +00:00
}
2024-08-23 13:23:38 +00:00
2024-04-16 13:18:19 +00:00
@media (max-width: 768px) {
2024-08-23 13:23:38 +00:00
.about-section-wrapper {
flex-direction: column;
width: 90%;
margin: 0 auto;
}
2024-04-16 13:18:19 +00:00
2024-08-23 13:23:38 +00:00
.about-text {
text-align: left;
}
2024-04-16 13:18:19 +00:00
2024-08-23 13:23:38 +00:00
.about-img {
text-align: center;
}
2024-04-16 13:18:19 +00:00
2024-08-23 13:23:38 +00:00
.about-text-p {
padding-top: 15px;
}
2024-04-16 13:18:19 +00:00
}
footer {
2024-08-23 13:23:38 +00:00
text-align: center;
margin-top: 20px;
margin-bottom: 20px;
2024-04-16 13:18:19 +00:00
}
2024-07-13 19:36:48 +00:00
.qt {
2024-08-23 13:23:38 +00:00
width: 60%;
2024-07-13 19:36:48 +00:00
}
2024-04-16 13:18:19 +00:00
/* Go to go */
#scrollToTopBtn {
2024-08-23 13:23:38 +00:00
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;
2024-04-16 13:18:19 +00:00
}
2024-04-20 19:36:59 +00:00
/* Různé - extra css */
h1 {
2024-08-23 13:23:38 +00:00
color: #734f96;
margin-top: 50px;
font-size: 50px;
2024-04-20 19:36:59 +00:00
}
h2 a {
2024-08-23 13:23:38 +00:00
color: #734f96;
2024-04-20 19:36:59 +00:00
}
h3 {
2024-08-23 13:23:38 +00:00
color: #734f96;
2024-04-20 19:36:59 +00:00
}
img {
2024-08-23 13:23:38 +00:00
width: 30%;
2024-04-20 19:36:59 +00:00
}
code {
2024-08-23 13:23:38 +00:00
background-color: aliceblue;
2024-04-20 19:36:59 +00:00
}
/* CodeBox */
.code-box {
2024-08-23 13:23:38 +00:00
position: relative;
width: 500px;
height: auto;
border: 1px solid #734f96;
padding: 5px;
overflow: auto;
background-color: #313131;
color: yellowgreen;
margin: auto;
text-align: left;
2024-04-20 19:36:59 +00:00
}
#copy-button {
2024-08-23 13:23:38 +00:00
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
color: whitesmoke;
background-color: transparent;
border: 1px solid #734f96;
2024-04-20 19:36:59 +00:00
}
.mpd-picture {
2024-08-23 13:23:38 +00:00
width: 100%;
2024-04-20 19:36:59 +00:00
}