mirror of
https://github.com/theKapcioszek/kapcioszek_strona.git
synced 2025-04-09 17:14:10 +02:00
131 lines
2.1 KiB
CSS
131 lines
2.1 KiB
CSS
body {
|
|
color: #e7e084;
|
|
background-image: url("../../img/meadow.jpg");
|
|
background-size: cover;
|
|
margin: 0px;
|
|
}
|
|
|
|
a {
|
|
color: #e7e084;
|
|
text-decoration: none;
|
|
}
|
|
|
|
h1 {
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
font-size: 60px;
|
|
}
|
|
|
|
h2 {
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
margin-bottom: 5%;
|
|
font-size: 40px;
|
|
}
|
|
|
|
h3 {
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
font-size: 30px;
|
|
}
|
|
|
|
td {
|
|
border: 5px solid white;
|
|
font-family: 'Montserrat', sans-serif;
|
|
font-weight: bold;
|
|
font-size: 25px;
|
|
}
|
|
|
|
tr:hover {
|
|
background-color: #e7e084;
|
|
color: #2a2121;
|
|
}
|
|
|
|
p {
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
font-size: 18px;
|
|
margin-left: 10%;
|
|
margin-right: 10%;
|
|
margin-bottom: 5%;
|
|
}
|
|
|
|
.menu {
|
|
text-align: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
font-family: 'Montserrat', sans-serif;
|
|
font-size: 20px;
|
|
background-color: #e7e084;
|
|
}
|
|
|
|
.menu a {
|
|
margin: 1%;
|
|
background-color: #2a2121;
|
|
border-radius: 5%;
|
|
padding: 0.5%;
|
|
color: #e7e084;
|
|
}
|
|
|
|
.menu a:hover {
|
|
background-color: #e7e084;
|
|
color: #2a2121;
|
|
}
|
|
|
|
.menu #branding {
|
|
position: absolute;
|
|
display: flex;
|
|
top: 1%;
|
|
left: 1%;
|
|
margin: 0px;
|
|
background: none;
|
|
}
|
|
|
|
.menu #branding a {
|
|
background: none;
|
|
}
|
|
|
|
.menu #branding img {
|
|
width: 60px;
|
|
height: 60px;
|
|
}
|
|
|
|
.menu #branding p {
|
|
font-size: 30px;
|
|
color: #2a2121;
|
|
margin-left: 10%;
|
|
margin-top: 9%;
|
|
font-family: 'Oregano', cursive;
|
|
}
|
|
|
|
.body {
|
|
text-align: center;
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-left: 20%;
|
|
margin-right: 20%;
|
|
padding-left: 5%;
|
|
padding-right: 5%;
|
|
padding-top: 4.1%;
|
|
padding-bottom: 4.5%;
|
|
background-color: #2a2121;
|
|
}
|
|
|
|
.body img {
|
|
margin-left: 5%;
|
|
margin-right: 5%;
|
|
}
|
|
|
|
.footer {
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
font-size: 16px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
border-top: 1px #99966d solid;
|
|
padding-bottom: 1%;
|
|
padding-top: 1%;
|
|
background-color: #2a2121;
|
|
}
|
|
|
|
.footer a {
|
|
color: #99966d;
|
|
} |