-
Notifications
You must be signed in to change notification settings - Fork 0
/
item.css
104 lines (88 loc) · 1.48 KB
/
item.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
91
92
93
94
95
96
97
98
99
100
101
102
body{
margin:0px;
background-color: rgb(38, 155, 38);
}
.between{
display: flex;
justify-content: center;
}
.outer{
background-color: white;
width: 510px;
height: 480px;
margin-top:140px;
border-radius: 10px;
}
.outerfill{
position: relative;
left: 180px;
}
.secondtagline{
display: flex;
margin: 10px;
margin-left: 20px;
}
.inner{
background-color: white;
width: 200px;
height: 360px;
margin-top:200px;
border-radius: 10px;
position: relative;
left: 150px;
box-shadow: 0 10px 20px rgba(54, 53, 53, 0.7);
}
.firstpart{
width: 100%;
height: 280px;
background: linear-gradient(5deg,green,white,green);
}
.apple{
width:200px;
height:200px;
position: absolute;
top: 20px;
left: -35px;
}
.tagline{
display: flex;
justify-content: flex-end;
position: absolute;
bottom:15px;
right: 10px;
}
.applerotation{
width: 30px;
height:30px;
margin: 5px;
border-style: solid;
border-width: 1px;
border-color: bisque;
}
.greenapple:hover{
width:40px;
height: 40px;
border-color: green;
}
.yellowapple:hover{
width:40px;
height: 40px;
border-color: yellow;
}
.redapple:hover{
width:40px;
height: 40px;
border-color: red;
}
button{
background-color: red;
color: white;
padding: 10px;
padding-left: 30px;
padding-right: 30px;
}
button:hover{
cursor: pointer;
width: 160px;
height: 45px;
}