homeboergmann/public/css/style.css

70 lines
1.1 KiB
CSS
Raw Normal View History

2024-06-06 21:03:19 +02:00
@font-face { font-family: 'Lato';
2024-06-06 21:56:22 +02:00
src: url('/font/Lato-Regular.ttf') format('truetype'); }
2024-06-06 21:03:19 +02:00
@font-face { font-family: 'Lato';
2024-06-06 21:56:22 +02:00
src: url('/font/Lato-Bold.ttf') format('truetype');
2024-06-06 21:03:19 +02:00
font-weight: bold;
}
@font-face { font-family: 'Lato';
2024-06-06 21:56:22 +02:00
src: url('/font/Lato-Italic.ttf') format('truetype');
2024-06-06 21:03:19 +02:00
font-style: italic;
}
@font-face { font-family: 'Lato';
2024-06-06 21:56:22 +02:00
src: url('/font/Lato-BoldItalic.ttf') format('truetype');
2024-06-06 21:03:19 +02:00
font-weight: bold;
font-style: italic;
}
body {
font-family: Lato;
}
span {font-family: Lato;}
.it {font-style: italic;}
.bo {font-weight: bold;}
* {
box-sizing: border-box;
}
img{
max-width: 100%;
}
/* Wrapper für die gesammte Seite*/
#wrapper{
max-width: 1200px;
margin: auto;
}
#titellogo{
width:30px;
}
/*Content wrapper*/
.content{
padding-top:75px;
}
/* Create three unequal columns that floats next to each other */
.column {
float: left;
padding: 10px;
}
/* Left and right column */
.column.side {
width: 25%;
}
/* Middle column */
.column.middle {
width: 50%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}