-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (94 loc) · 1.51 KB
/
style.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
103
104
105
106
107
108
109
110
111
112
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
display: flex;
justify-content: space-between;
}
.options {
width: 45%;
display: flex;
flex-direction: column;
align-items: center;
}
.pizza-bases,
.toppings {
margin-bottom: 20px;
}
h3 {
margin-bottom: 10px;
}
.base,
.topping {
width: 100px;
height: 100px;
background-color: #F5F5F5;
border: 2px solid #ddd;
border-radius: 50%;
margin: 10px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.base img,
.topping img {
max-width: 90%;
max-height: 90%;
object-fit: contain;
}
.selected {
border-color: #FFA500;
}
.hide {
display: none;
}
#pizza-circle {
width: 400px;
height: 400px;
background-color: #F5F5F5;
border: 2px solid #ddd;
border-radius: 50%;
margin-top: 100px;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.custom-button {
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.custom-result {
background-color: #ffd8ad;
border: 2px solid #ffa94d;
border-radius: 10px;
color: #6d4c41;
font-family: Arial, sans-serif;
font-size: 18px;
margin-top: 20px;
padding: 20px;
text-align: center;
}
#instructions {
position: absolute;
bottom: 40%;
top: 25%;
left: 10%;
transform: translateX(-50%);
width: 200px;
text-align: center;
}