forked from kontur-web-courses/order-coffee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
111 lines (94 loc) · 1.6 KB
/
Copy pathstyles.css
File metadata and controls
111 lines (94 loc) · 1.6 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
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
.beverage {
border: 1px solid #eee;
margin: 15px 0;
padding: 15px;
}
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
}
.modal.active {
display: flex;
justify-content: center;
align-items: center;
}
.modal-content {
background-color: #ffffff;
padding: 20px;
border: 1px solid #888;
width: 500px;
text-align: center;
position: relative;
}
.beverage-count {
margin: 0 0 15px;
}
.field {
display: block;
margin-bottom: 10px;
}
.label-text {
display: inline-block;
width: 80px;
}
.checkbox-label {
margin-bottom: 5px;
display: inline-block;
}
.checkbox-field {
margin: 5px 0;
display: block;
}
.add-button {
border: none;
background: none;
padding: 10px;
color: rgba(0, 27, 255, 0.82);
font-size: 14px;
text-decoration: underline dashed;
cursor: pointer;
}
.submit-button {
font-size: 16px;
padding: 7px 15px;
border: 2px solid orange;
border-radius: 5px;
}
.delete-button {
background: none;
border: none;
font-size: 20px;
cursor: pointer;
color: #999;
padding: 0 5px;
}
.delete-button:hover {
color: red;
}
.beverage {
position: relative;
}
.modal-close {
position: absolute;
top: 8px;
right: 10px;
background: none;
border: none;
padding: 0;
font-size: 18px;
cursor: pointer;
color: #999;
}
.modal-close:hover {
color: red;
}
.modal-content table {
margin: 15px auto 0;
border-collapse: collapse;
}