forked from Irit-Basic-JS/6-order-coffe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
141 lines (117 loc) · 2.21 KB
/
Copy pathstyles.css
File metadata and controls
141 lines (117 loc) · 2.21 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
@import url('https://fonts.googleapis.com/css2?family=Exo+2&display=swap');
* {
font-family: 'Exo 2', sans-serif;
}
.beverage-list {
display: flex;
flex-flow: row;
justify-content: flex-start;
gap: 5px;
overflow-x: scroll;
overflow-y: hidden;
}
.beverage {
flex: 0 0 auto;
display: flex;
flex-direction: column;
align-items: flex-start;
max-width: 200px;
border: 1px solid #eee;
margin: 0;
padding: 15px;
background-color: rgba(125, 123, 124, 0.1);
}
.beverage:hover,
.beverage:focus-within {
background-color: rgba(125, 123, 124, 0.4);
}
.beverage .wishes {
display: block;
margin: 5px 0;
resize: none;
}
.beverage .wishes-result {
margin: 0;
word-break: break-word;
}
.btn-delete, .btn-close {
align-self: flex-end;
font-size: larger;
font-weight: bolder;
cursor: pointer;
}
.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;
}
dialog::backdrop {
background-color: rgba(0, 0, 0, 0.5);
}
.confirmation {
box-sizing: border-box;
width: 500px;
padding: 5px;
}
.confirmation .btn-close {
line-height: 0.5em;
align-self: flex-start;
}
.modal-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
border-bottom: 1px solid gray;
}
.modal-body {
margin-bottom: 10px;
}
.modal-footer {
display: flex;
justify-content: space-between;
}
.beverage-table {
border-collapse: collapse;
}
.beverage-table th,
.beverage-table td {
padding: 5px;
border: 1px solid;
}
.beverage-table td:nth-child(4) {
word-break: break-all;
max-width: 200px;
}
.beverage-table th {
text-align: center;
}