-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFruit-picker.css
58 lines (49 loc) · 934 Bytes
/
Fruit-picker.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
body
{
width: 100%;
margin-left: 50px;
text-align: center;
background-color: rgb(71, 89, 122);
background-image: url('fruit1.jpg');
background-attachment: fixed;
background-repeat: no-repeat;
}
.card-wrapper {
display: flex;
justify-content: center;
}
h1
{
color: rgba(224, 243, 55, 0.993);
background-image: url("logo.jpg");
background-repeat: no-repeat;
padding-top: 102px;
text-shadow: 2px;
font-style: oblique;
background-size: 100px;
font-family: serif;
}
hr
{
color: white;
border-width: 5px;
margin-right: auto;
margin-left: auto;
}
#orderList li{
list-style: none;
text-align: left;
height: 28px;
}
.deletebutton
{
font-size: 10px;
}
.clickme .deletebutton /* verberg de delete button op de hele rij van orderItem */
{
display: none;
}
.clickme:hover .deletebutton /* met de functie "hover" kunt de delete button verschijnen als de muis er op staat terug */
{
display: inline-block;
}