-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (75 loc) · 1.26 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
body {
margin: 0;
min-height: 100vh;
}
.navigetion {
background-color: #c4c4c4;
padding: 1rem 1.15rem;
display: flex;
}
.left-side, .right-side {
flex-grow: 1;
}
.right-side {
display: flex;
justify-content: flex-end;
}
.button {
min-width: 12rem;
background-color: aliceblue;
border-radius: 1rem;
display: inline-flex;
justify-content: center;
align-items: center;
padding: 0.5rem 0;
margin-right: 1rem;
}
.user {
background-color: goldenrod;
}
.container {
display: flex;
justify-content: center;
margin-top: 1rem;
}
.main-work {
border: 1px solid black;
border-radius: 2rem 2rem 0 0;
min-width: 62.5rem;
}
.foods-table-nav {
padding: 1rem
}
table {
width: 100%;
min-height: 20rem;
}
th {
text-align: left;
}
.right {
text-align: right;
}
tr {
vertical-align: top;
}
.progress-bars {
width: 28.125rem;
border-radius: 1rem;
background-color: #c4c4c4;
display: flex;
flex-direction: column;
align-items: center;
}
.progress-bar {
border: 1px solid black;
border-radius: 0.625rem;
width: 90%;
margin: 0.7rem;
overflow: hidden;
}
.progress {
background-color: burlywood;
width: 25%;
padding-left: 0.625rem;
}