lukas-blog/zivotopis/style-cv.css

87 lines
1.0 KiB
CSS
Raw Normal View History

2024-01-08 09:48:00 +00:00
:root {
--my-black: black;
--my-beckground: #ded4d4;
2024-01-08 09:55:53 +00:00
max-width: 1200px;
margin: auto;
2024-01-08 09:48:00 +00:00
}
body {
background-color: var(--my-beckground);
max-width: 1200px;
margin: auto;
2024-01-08 12:29:34 +00:00
margin-bottom: 25px;
2024-01-08 09:48:00 +00:00
}
2024-01-12 02:10:05 +00:00
@media screen and (max-width: 600px) {
body {
width: calc(100% - 16px);
}
}
2024-01-08 09:48:00 +00:00
footer {
position: fixed;
bottom: 0;
}
.tlacitko {
color: var(--my-black);
}
td,
th {
border: 1px solid var(--my-black);
padding: 15px;
}
.flexbox {
display: flex;
max-width: auto;
margin: auto;
}
2024-01-12 02:10:05 +00:00
.flexbox-content {
display: flex;
flex-direction: column;
}
2024-01-08 09:48:00 +00:00
.menu {
2024-01-12 02:10:05 +00:00
margin-top: 25px;
2024-01-08 09:48:00 +00:00
}
.content {
2024-01-12 02:10:05 +00:00
order: 2;
2024-01-08 09:48:00 +00:00
flex: 3;
2024-01-12 02:10:05 +00:00
padding: 55px;
margin-top: -45px;
2024-01-08 09:48:00 +00:00
}
.dot {
list-style-type: none;
}
.jobs,
.course,
.fun {
font-size: 20px;
}
2024-01-12 02:10:05 +00:00
.title {
text-align: center;
order: 1;
}
@media screen and (max-width: 600px) {
.flexbox {
flex-direction: column;
}
.menu {
order: 1;
2024-01-12 12:23:02 +00:00
text-align: center;
}
.dot-none {
list-style-type: none;
2024-01-12 02:10:05 +00:00
}
/* .content {
order: 3;
} */
.title {
order: -1;
}
}