175 lines
3.5 KiB
CSS
175 lines
3.5 KiB
CSS
@charset "UTF-8";
|
|
|
|
/* Webbfonter */
|
|
@font-face {
|
|
font-family: 'Journal';
|
|
src: url('journal-webfont.woff') format('woff');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
/* Ändra basegenskaperna av sidan. */
|
|
body {
|
|
font-family: 'Source Sans Pro', Sans-Serif;
|
|
background-color: #dadada;
|
|
color: #101010;
|
|
}
|
|
h1 {
|
|
font-family: 'Montserrat', Sans-Serif;
|
|
color: #ffffff;
|
|
text-shadow: 2px 2px 4px #000000;
|
|
}
|
|
h2 {
|
|
font-family: 'Montserrat', Sans-Serif;
|
|
color: #ffffff;
|
|
text-shadow: 2px 2px 4px #000000;
|
|
}
|
|
|
|
/* Spacing i listan, mycket jobb för att lösa denna snyggt. */
|
|
li:not(:last-child) {
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
/* Min stil på länkar. */
|
|
a {
|
|
color: #000044;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
a:hover {
|
|
color: #0000cc;
|
|
}
|
|
|
|
/* Min stil för bilden. */
|
|
.portrait-image {
|
|
box-shadow: none;
|
|
border-radius: 3px;
|
|
transform: none;
|
|
}
|
|
|
|
/* Min stil för att rama in texten. */
|
|
.presentation-box {
|
|
background-color: #dadada;
|
|
border-radius: 3px;
|
|
box-shadow: none;
|
|
}
|
|
|
|
/* Min stil för presentationstexten. */
|
|
.presentation-text {
|
|
font-family: "Source Sans Pro", sans-serif;
|
|
}
|
|
|
|
/* Footer stilen */
|
|
.footer-text {
|
|
font-style: italic;
|
|
text-align: right;
|
|
}
|
|
|
|
/* Definition av mitt rutnät för sidans layout. */
|
|
/* Behållaren för cellerna, tabellen. */
|
|
.grid-container {
|
|
display: grid;
|
|
column-gap: 25px;
|
|
row-gap: 0px;
|
|
|
|
max-width: 900px; /* max-width of the layout */
|
|
margin: 0 auto; /* center in the viewport */
|
|
|
|
background-color: #dadada;
|
|
}
|
|
|
|
/* Gemensant för cellerna i tabellen. */
|
|
.grid-item {
|
|
display: grid;
|
|
}
|
|
|
|
/* Layout, tilldelning av områdesnamn. */
|
|
.header {
|
|
grid-area: header;
|
|
}
|
|
.content {
|
|
grid-area: content;
|
|
}
|
|
.content2 {
|
|
grid-area: content2;
|
|
}
|
|
.image {
|
|
grid-area: image;
|
|
}
|
|
.footer {
|
|
grid-area: footer;
|
|
}
|
|
|
|
/* Standard layout, för små fönster/skärmar. */
|
|
.grid-container {
|
|
grid-template-areas:
|
|
"header"
|
|
"content"
|
|
"image"
|
|
"content2"
|
|
"footer";
|
|
padding: 0px;
|
|
box-shadow: none;
|
|
}
|
|
|
|
/* Layout som väljs automatisk när det finns plats. */
|
|
@media only screen and (min-width: 850px) {
|
|
body {
|
|
/* Gratis bild från pexels, https://www.pexels.com/photo/brown-wooden-panel-347139/ */
|
|
background-image: url("bg.jpg");
|
|
background-attachment: fixed;
|
|
background-position-y: bottom;
|
|
background-repeat: repeat-x;
|
|
}
|
|
|
|
.grid-container {
|
|
grid-template-areas:
|
|
"header header header"
|
|
"content content image"
|
|
"content2 content2 content2"
|
|
"footer footer footer";
|
|
box-shadow: 10px 10px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
padding: 15px;
|
|
background-image: url("bg-paper-yellowed.jpg");
|
|
background-repeat: none;
|
|
background-size: cover;
|
|
}
|
|
|
|
.image {
|
|
position: relative;
|
|
top: 40px;
|
|
left: -40px;
|
|
}
|
|
|
|
/* Min coolare stil för bilden. */
|
|
.portrait-image {
|
|
box-shadow: 10px 10px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
border-radius: 3px;
|
|
transform: rotate(-5deg);
|
|
}
|
|
|
|
/* Min coolare stil för att rama in texten. */
|
|
.presentation-box {
|
|
background-color: #f3ee9e;
|
|
border-radius: 3px;
|
|
box-shadow: 10px 10px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
|
|
transform: rotate(-1deg);
|
|
}
|
|
|
|
/* Min coolare stil för presentationstexten. */
|
|
.presentation-text {
|
|
font-family: "Journal", sans-serif;
|
|
font-size: 32px;
|
|
color: #212151;
|
|
margin: 15px;
|
|
}
|
|
|
|
/* Begränsande stil för extra postit lapp. */
|
|
.extra-note {
|
|
max-width: 320px;
|
|
transform: rotate(3deg);
|
|
}
|
|
}
|
|
|