-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.css
More file actions
82 lines (78 loc) · 1.26 KB
/
main.css
File metadata and controls
82 lines (78 loc) · 1.26 KB
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
html, body{
height: 100%;
margin: 0;
padding: 0;
}
ul {
margin: 0;
padding: 0;
}
.kitchen{
position: relative;
width: 50%;
height: 70%;
display: inline-block;
}
.chef {
position: absolute;
top: 0;
left: 2em;
width: 50%;
height: 50%;
outline: 1px solid blue;
}
.recipes{
position: absolute;
top: 2em;
right: 2em;
width: 36%;
height: 44%;
outline: 1px solid red;
}
.pan{
position: absolute;
bottom: 0;
right: 2em;
left: 2em;
height: 44%;
border: 1px solid green;
border-radius: 50%;
}
.player-mark {
position: absolute;
top: 1em;
right: 1em;
width: 64px;
height: 64px;
background: gainsboro;
border: 1px solid silver;
border-radius: 50%;
}
.player-mark.current {
background: gold;
border-color: orange;
}
#ingredients {
border: 1px solid gray;
height: 20%;
margin: 0 10%;
text-align: center;
}
.ingredient {
width: 19%;
height: 100%;
display: inline-block;
background: silver;
margin: 0 2px;
cursor: pointer;
}
.ingredient::before {
content: "";
display: inline-block;
vertical-align: middle;
height: 100%;
}
.ingredient span {
display: inline-block;
vertical-align: middle;
}