Show sourcecode
The following files exists in this folder. Click to view.
index.css
63 lines ASCII Windows (CRLF)
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
*{
box-sizing: border-box;
}
body{
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
border: 2px solid black;
background-color: gray;
}
header{
position: sticky;
top: 0;
background-color: lightgray;
height: 100px;
width: 100%;
font-size: 90px;
color: black;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
box-shadow: 0 5px 15px black;
}
#ovningslista{
list-style: none;
margin-top: 20px;
width: 50vw;
margin: auto;
padding: 0;
}
#ovningslista li a{
text-decoration: none;
color: black;
margin: 5px;
width: 100%;
height: 10vh;
justify-content: center;
align-items: center;
display: flex;
}
.gold{
background-color: gold !important;
}
.gold:hover{
background-color: goldenrod !important;
}
@media only screen and (max-width: 1000px){
header{
font-size: 50px;
height: 150px;
}
}
canvas {
border: 2px solid black;
position: absolute;
left: 6px;
top: 8px;
z-index: -1;
cursor: pointer;
}