Show sourcecode
The following files exists in this folder. Click to view.
index.css
jsOvningStart.css
stylesheet.css
index.css
63 lines ASCII Windows (CRLF)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
*{
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;
}