-
Notifications
You must be signed in to change notification settings - Fork 0
/
stilark.css
91 lines (81 loc) · 1.18 KB
/
stilark.css
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
.partiboks {
display: grid;
grid-template-columns: repeat(10, 1fr);
grid-gap: 10px;
grid-auto-rows: minmax(150px, auto);
background-color: lightcyan;
}
.FrP {
grid-column: 1;
grid-row: 1;
}
.H {
grid-column: 2;
grid-row: 1;
}
.V {
grid-column: 3;
grid-row: 1;
}
.KrF {
grid-column: 4;
grid-row: 1;
}
.MDG {
grid-column: 5;
grid-row: 1;
}
.SP {
grid-column: 6;
grid-row: 1;
}
.A {
grid-column: 7;
grid-row: 1;
}
.SV {
grid-column: 8;
grid-row: 1;
}
.Rodt {
grid-column: 9;
grid-row: 1;
}
.PP {
grid-column: 10;
grid-row: 1;
}
/* Mouseovereffekt */
div > div > img {
width: 5em;
}
div > div > img:hover {
transition: width 0.2s;
width: 6em;
}
#appboks {
grid-row: 2;
position: relative;
top: 2rem;
background-color:lightcoral;
}
#appBoks > img {
width: 30em;;
border: 0.1em solid black;
border-radius: 3em;
margin-left: 3em;
margin-top: 3em;
}
.innprosent {
width: 3em;
}
.soyle_bb {
background-color: darkblue;
height: 2em;
width: 10px;
}
.soyle_rg {
background-color: red;
height: 2em;
width: 10px;
}