Files
r11website/style.css
2025-04-17 13:45:29 +02:00

104 lines
1.5 KiB
CSS

body {
max-width: 1200px;
color: #1A161A;
font-size: 1em;
font-family: 'Roboto', Arial, sans-serif;
font-weight: 300;
background-color: #33A5CB;
}
body header div {
margin-top: 0px;
padding: 0 10px 0 10px;
}
body div {
color: #1A161A;
background-color: #FFF;
margin-top: 100px;
padding: 20px;
}
h1, h2, h3 {
color: #1A161A;
text-align: center;
}
header {
float: left;
width: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 99;
background: #fff;
transition: all 0.3s ease;
height: 60px;
padding-top: 20px;
}
header div {
padding-right: 2em;
padding-left: 2em;
}
header div img {
height: 35px;
}
header li a {
margin: 0;
padding: 0.25em 10px;
border: 0;
float: left;
width: 100%;
padding: 3px 10px 3px 10px;
color: #1A161A;
font-size: 1.250em;
text-decoration: none;
background: transparent;
font-weight: 300;
position: relative;
height: 30px;
}
header li a:hover {
color: #fff;
transition: all 0.5s ease;
background: #33A5CB;
text-decoration: none;
}
nav ul {
display: flex;
list-style: none;
gap: 1rem;
padding: 0;
margin: 0;
}
div ul {
display: flex;
list-style: none;
gap: 1rem;
padding: 0;
margin: 0;
}
ul ul {
display: list-item;
list-style: circle;
padding-left: 20px;
}
footer {
background-color: #242424;
width: 100%;
}
footer div {
display: flex;
background-color: #fff;
color: #464646;
font-size: 0.750em;
}