mirror of
https://git.bolliret.ch/pcs/pcs-website
synced 2026-01-18 15:01:37 +01:00
85 lines
1.1 KiB
CSS
85 lines
1.1 KiB
CSS
body {
|
|
font-size: 1vw;
|
|
font-family: 'Verdana', sans-serif;
|
|
margin: 50px 25px;
|
|
color: #5d5d5d;
|
|
}
|
|
|
|
.navbar-nav .active a{
|
|
color: #7f5e3c;
|
|
}
|
|
|
|
a {
|
|
color: #b78c66;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: #7f5e3c;
|
|
}
|
|
|
|
th, td {
|
|
padding-left: 15px;
|
|
padding-right: 15px;
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
header, footer, div.page {
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
background: #ececec;
|
|
padding: 20px 30px;
|
|
}
|
|
|
|
header, footer {
|
|
font-size: 0.75vw;
|
|
color: #b0b0b0;
|
|
}
|
|
|
|
header h1 {
|
|
color: #b0b0b0;
|
|
margin: 0;
|
|
font-weight: normal;
|
|
font-size: 42px;
|
|
}
|
|
|
|
header nav ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
header nav ul li {
|
|
display: inline;
|
|
margin: 0 8px 0 0;
|
|
padding: 0;
|
|
}
|
|
|
|
div.page {
|
|
background: #fafafa;
|
|
}
|
|
|
|
header, footer {
|
|
font-size: 0.75vw;
|
|
}
|
|
|
|
@media (max-width: 768px){
|
|
body {
|
|
font-size: 4vw;
|
|
}
|
|
header, footer {
|
|
font-size: 2vw;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 769px) and (max-width: 1024px){
|
|
body {
|
|
font-size: 2.5vw;
|
|
}
|
|
header, footer {
|
|
font-size: 1.75vw;
|
|
}
|
|
}
|
|
|
|
|